Hi guys i want to make a camera which follows the game object on the wall. I think splines could help me with this. I implemented and let camera face to my moving game object but i want my camera to move with game object on a line. For example Fifa camera . The camera follows a line on the tribune while following the ball. Do you have any idea for this ?
Make the camera a child of the object to be followed. Then just force it’s X,Y,or Z position to the plane you’re line is on.
EX: ball travels in an increasing X direction. The camera follows the X coord of the ball. If the ball travels in an increasing Z direction. The camera doesn’t appear to move because it’s Z is locked inside the Update function.