iTween
March 18, 2012
iTween must be one of the single most usefull scripts that are available. There is just one thing that makes working with it slightly obscure, because of the way extended options have to be added via the hash table by using the iTween.Hash() function.
iTween.MoveTo(exhibitObject, iTween.Hash(
"position", presenterTransform.position,
"time", reloadDelay,
"islocal", false,
"easetype", iTween.EaseType.easeOutQuad
));
Categorised in: Game development, HowTo