LTDescr.setMoveLocal C# (CSharp) Method

setMoveLocal() public method

public setMoveLocal ( ) : LTDescr
return LTDescr
    public LTDescr setMoveLocal()
    {
        this.type = TweenAction.MOVE_LOCAL;
        this.initInternal = ()=>{ this.from = trans.localPosition; };
        this.easeInternal = ()=>{
            newVect = easeMethod();
            trans.localPosition = newVect;
        };
        return this;
    }
LTDescr