Home > front end >  Camera not follow my 3d character during animation Unity
Camera not follow my 3d character during animation Unity

Time:03-11

I have a character with one animation. the animation is running. So during the animation start, my character will run one position to other position, but my camera doesnt follow the character.

CodePudding user response:

Do you have a script controlling the position of the camera or is it just parented to your player object?

If the camera is parented to the player object, it'll follow it everywhere.

However, it'll follow the root of the player object, regardless of the animation currently playing. If during the animation, the player steps forward, its root won't change. The animation of an object has no effects on its position.

You should make your player move through code, not through animation. You shouldn't have any problem then.

  • Related