TweenLite.to(
myCamera,
nDurationOfMyTween,{
x:nMyFirstTargetXPos,
y:nMyFirstTargetYPos,
z:nMyFirstTargetXPos,
onComplete:doThatThingIwantToDoBeforeTweeningTheCameraAgain
}
);
private function doThatThingIwantToDoBeforeTweeningTheCameraAgain():void
{
// do some stuff
}
Alternatively you can:
http://www.allforthecode.co.uk/aftc/forum/user/modules/forum/article.php?index=4&subindex=0&aid=247
GL
D
On 10 December 2010 17:00, colouredfunk <[email protected]> wrote:
> Hey, has anyone got an example of how to animate a camera along a
> path?
>
> I need to camera to stop along a few points along the way as well..
>
> Many thanks