You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want a property for TweenHandler, to instantly complete Tweens.
varhandler=new TweenHandler();
handler.InstantComplete(true);
handler.Add(point.Tween(x => x.X).To(20).In(1.0).OnComplete(OnCompleteHandler).OnUpdate(OnUpdateHandler));// at this point point.x equals 20, OnUpdate- and OnCompleteHandler have been called
The basic idea is to simply 'disable' all animations for a handler, while still having the full functionality of event handling.
The text was updated successfully, but these errors were encountered:
I want a property for TweenHandler, to instantly complete Tweens.
The basic idea is to simply 'disable' all animations for a handler, while still having the full functionality of event handling.
The text was updated successfully, but these errors were encountered: