Unity – Move character with animation

In my previous post I made a short post about how to make a character move with the Character Controller component in the end. We can continue on this path and add some more to our script to make our character use a walking animation too. This is a tutorial on how to move character …

Unity – Move 3D object with Input Keys

In Unity, one of the first things that usually want to do is add some code so that I can move a 3D object with my keyboard keys. I found some ways after experimenting. On your object, also add the component Rigid Body. Then, create a new script, then drag it to your object so …