LTDescr.setMoveLocal C# (CSharp) 메소드

setMoveLocal() 공개 메소드

public setMoveLocal ( ) : LTDescr
리턴 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