Пример #1
0
 /// <summary>
 /// Sets the method to call when the Tween has finished (If the tween loops then this callback will be called at the end of each loop).
 /// </summary>
 public void SetFinishCallback(OnTweenFinished finishCallback, params object[] bundleObjects)
 {
     this.finishCallback = finishCallback;
     this.bundleObjects  = bundleObjects;
 }
Пример #2
0
 /// <summary>
 /// Sets the method to call when the Tween has finished (If the tween loops then this callback will be called at the end of each loop).
 /// </summary>
 public void SetFinishCallback(OnTweenFinished finishCallback)
 {
     this.finishCallback = finishCallback;
 }