iTween.MoveBy C# (CSharp) Method

MoveBy() public static method

Adds the supplied coordinates to a GameObject's position with FULL customization options.
public static MoveBy ( GameObject target, Hashtable args ) : void
target GameObject
args Hashtable
return void
    public static void MoveBy(GameObject target, Hashtable args)
    {
        //clean args:
        args = iTween.CleanArgs(args);

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

Same methods

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