iTween.RotateAdd C# (CSharp) Method

RotateAdd() public static method

Adds supplied Euler angles in degrees to a GameObject's rotation over time with FULL customization options.
public static RotateAdd ( GameObject target, Hashtable args ) : void
target GameObject
args Hashtable
return void
    public static void RotateAdd(GameObject target, Hashtable args)
    {
        //clean args:
        args = iTween.CleanArgs(args);

        //establish iTween:
        args["type"]="rotate";
        args["method"]="add";
        Launch(target,args);
    }

Same methods

iTween::RotateAdd ( GameObject target, Vector3 amount, float time ) : void
iTween