C-7, RandomFellow
Thank you very much for the replies ^^ i appreciate it. Hmm, so I'm guessing that i need a list of events according to the cutscene that I need? as in...a lot XD. you know like for RPG's and starting tutorials and all that. So I can go switch from one object to the next with the camera Sprite? ^^
BTW, i really never understood what that lerp was doing exactly?
Haha RandomFellow my bad!
Right, cutscenes take a lot of planning. I use a variable for a timeline--when something completes, add 1 to that variable which triggers the next actions, etc.
Lerp is a different way to move from point a to point b, basically. It linearly interpolates (lerp) between points, what you'll see is something that starts out quickly towards a value or position and decelerates as it approaches its destination. This is a simple way of easing something into a position instead of an abrupt stop.