iTween.Pause C# (CSharp) Method

Pause() public static method

Pause all iTweens in scene.
public static Pause ( ) : void
return void
    public static void Pause()
    {
        for (int i = 0; i < tweens.Count; i++) {
            Hashtable currentTween = (Hashtable)tweens[i];
            GameObject target = (GameObject)currentTween["target"];
            Pause(target);
        }
    }

Same methods

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