View all by creator_wizard_seth
Creator
Follow creator_wizard_seth
Follow
Following creator_wizard_seth
Following
Add To Collection
Collection
Comments
Devlog
unityengine first person character controller
←
Return to unityengine first person character controller
Devlog
desired velocity transforms and keyboard input
February 28, 2026
by
creator_wizard_seth
#c#
when pressing WASD, youre describing your desired velocity in terms of the speed of the character you are playing, and the direction in localspace chosen by your WASD. W forward A left S back D right...
Continue reading
velocity clipping character capsules against the scene
February 28, 2026
by
creator_wizard_seth
#c#, #source code
below is an open source preview of my character controller code in c# the most important few lines of code is here.... velocity += hit_normals[i] * -dot_normal_velocity; this one line is responsible f...
Continue reading