moveRight
moveForward
moveBackward
etc.

are the easiest ways to manipulate objects with the 3d space (to my
mind).

The problem is that it is not possible to tween with, say
"TweenMax.to". Instead the on enterframe render method is reccomended.

This is typically set up:

if(aboutLeft < 8){
        aboutLeft +=1;
        planeContainer.moveUp(120);
        planeContainer.moveRight(30);
}

..the problem being that the movement looks too uniform, adding an
easing algorthm (in my experience) means the final value to be checked
is never reached (the nature of easing).

Would anyone be able to reccomened a way to add easing within the
onEnterFrame render?
or
How to use a tweening engine to tween the movement local to the object
(ie. moveForward, moveBackward etc)

many thanks,
Alex


-- 
To unsubscribe, reply using "remove me" as the subject.

Reply via email to