iTween.MoveAdd C# (CSharp) Method

MoveAdd() public static method

Translates a GameObject's position over time with FULL customization options.
public static MoveAdd ( GameObject target, Hashtable args ) : void
target GameObject
args Hashtable
return void
    public static void MoveAdd(GameObject target, Hashtable args)
    {
        //clean args:
        args = iTween.CleanArgs(args);

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

Same methods

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