iTween.Resume C# (CSharp) Method

Resume() public static method

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

Same methods

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