Toggle navigation
Hot Examples
EN
EN
RU
DE
FR
ES
PT
IT
JP
ZH
KO
C#
PHP
C#
Java
Go
C++
Python
JS
TS
Search
C# (CSharp) ITween.Abort Examples
Programming Language:
C# (CSharp)
Class/Type:
ITween
Method/Function:
Abort
Examples at hotexamples.com:
1
C# (CSharp) ITween.Abort - 1 examples found
. These are the top rated real world C# (CSharp) examples of
ITween.Abort
extracted from open source projects. You can rate examples to help us improve the quality of examples.
Frequently Used Methods
Show
Hide
MoveTo(5)
CalculatePosition(4)
Hash(4)
GetValue(3)
CalculateFinishVelocity(3)
CalculateStartVelocity(3)
Cancel(2)
Complete(2)
CalculateFinishTime(2)
Abort(1)
MoveNext(1)
Instant(1)
Finish(1)
GetTargetObject(1)
ForceFinish(1)
Force(1)
DoAnim(1)
Dispose(1)
OnComplete(1)
Frequently Used Methods
MoveTo (5)
CalculatePosition (4)
Hash (4)
GetValue (3)
CalculateFinishVelocity (3)
CalculateStartVelocity (3)
Cancel (2)
Complete (2)
CalculateFinishTime (2)
Abort (1)
Frequently Used Methods
MoveNext (1)
Instant (1)
Finish (1)
GetTargetObject (1)
ForceFinish (1)
Force (1)
DoAnim (1)
Dispose (1)
OnComplete (1)
Example #1
0
Show file
File:
TweenExtensions.cs
Project:
Avatarchik/OutOfTheBox
public static void SafelyAbort(this ITween tween) { if (tween != null) { tween.Abort(); } }
x