To tween any rotation property of the target object in the shortest direction, use "shortRotation"
For example, if
myObject.rotation
is currently 170 degrees and you want to tween it to -170 degrees,
a normal rotation tween would travel a total of 340 degrees in the counter-clockwise direction,
but if you use shortRotation, it would travel 20 degrees in the clockwise direction instead. You
can define any number of rotation properties in the shortRotation object which makes 3D tweening
easier, like:
TweenMax.to(mc, 2, {shortRotation:{rotationX:-170, rotationY:35, rotationZ:200}});
USAGE:
import com.greensock.TweenLite;
import com.greensock.plugins.TweenPlugin;
import com.greensock.plugins.ShortRotationPlugin;
TweenPlugin.activate([ShortRotationPlugin]); //activation is permanent in the SWF, so this line only needs to be run once.
TweenLite.to(mc, 1, {shortRotation:{rotation:-170}});
//or for a 3D tween with multiple rotation values...
TweenLite.to(mc, 1, {shortRotation:{rotationX:-170, rotationY:35, rotationZ:10}});
Copyright 2009, GreenSock. All rights reserved. This work is subject to the terms in
http://www.greensock.com/terms_of_use.html or for corporate Club GreenSock members, the software agreement that was issued with the corporate membership.