- Home /
Smoothly Move camera while looking at object
Is it possible to smoothly move the camera while looking at a particular object? Using iTween, LookUpdate and MoveTo, I often get jerky motion or jumps
Comment
I'm sure you've tried these but I have to ask, have you tried using the SmoothLookAt or SmoothFollow script that come with Unity?
do those work when the camera is moving rather htan the object?
If you are moving the camera directly ins$$anonymous$$d of moving a camera target then you'll need to write your own script using code similar to the smoothing code in those two scripts. It might be easier to for you to create and empty GameObject as the camera target and then move that around.