protected void InternalSetCallback(TweenCallback callback) { this.callback = callback; }
internal sealed override void _SetCallback(TweenCallback callback) { SetCallback(callback); }
/// <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()); }
internal abstract void _SetCallback(TweenCallback callback);