How to get smooth-curve camera movement?
How to get smooth-curve camera movement?
Hi there! I'm currently using the Zoom2D sequence command. I know you can set it to transition smoothly over a number of seconds, but find the effect still to jarring for what I'm going for, is there a way to get the movement's smoothness to be "curved" (i.e. start zooming in slowly, then speed up, then slow down again before the end of the zoom) to make it seem more natural?
Re: How to get smooth-curve camera movement?
Hi,
Zoom2D() does linear movement. Two suggestions:
1. Write a custom sequencer command (e.g., duplicate SequencerCommandZoom2D.cs) that eases the movement in and out. You could use a tweening library such as DOTween to handle the movement in the sequencer command.
2. Or use Cinemachine, and switch to the Cinemachine***() sequencer commands.
Zoom2D() does linear movement. Two suggestions:
1. Write a custom sequencer command (e.g., duplicate SequencerCommandZoom2D.cs) that eases the movement in and out. You could use a tweening library such as DOTween to handle the movement in the sequencer command.
2. Or use Cinemachine, and switch to the Cinemachine***() sequencer commands.