iTween.Stop C# (CSharp) Method

Stop() public static method

Stop and destroy all Tweens in current scene.
public static Stop ( ) : void
return void
    public static void Stop()
    {
        for (int i = 0; i < tweens.Count; i++) {
            Hashtable currentTween = (Hashtable)tweens[i];
            GameObject target = (GameObject)currentTween["target"];
            Stop(target);
        }
        tweens.Clear();
    }

Same methods

iTween::Stop ( GameObject target ) : void
iTween::Stop ( GameObject target, bool includechildren ) : void
iTween::Stop ( GameObject target, string type ) : void
iTween::Stop ( GameObject target, string type, bool includechildren ) : void
iTween::Stop ( string type ) : void
iTween