Beispiel #1
0
 protected void InternalSetCallback(TweenCallback callback)
 {
     this.callback = callback;
 }
Beispiel #2
0
 internal sealed override void _SetCallback(TweenCallback callback)
 {
     SetCallback(callback);
 }
Beispiel #3
0
 /// <summary>Sets the callback.</summary>
 /// <remarks>
 /// Sets the callback. By default, it will be fired at the completion of the
 /// tween or timeline (event COMPLETE). If you want to change this behavior
 /// and add more triggers, use the
 /// <see>setCallbackTriggers()</see>
 /// method.
 /// </remarks>
 /// <seealso cref="TweenCallback">TweenCallback</seealso>
 public virtual T SetCallback(TweenCallback callback)
 {
     InternalSetCallback(callback);
     return(ThisAsT());
 }
Beispiel #4
0
 internal abstract void _SetCallback(TweenCallback callback);