This is type safe wrapper for iTween.
Typesafe for iTween:
- contains modified source code of iTween which supports lambda expression.
- works well with autocomplete - no more going back to documentation!
- works with C#, JS and Boo
Sample:
gameObject.iMoveBy()
.X(10.0f)
.Delay(1.0f)
.LoopType(iTween.LoopType.pingPong)
.OnStart(() => Debug.Log("OnStart"))
.OnComplete(OnComplete)
.Start();
You should remove old iTween.cs to work with lambda expression.