LTDescr.setMove C# (CSharp) Method

setMove() public method

public setMove ( ) : LTDescr
return LTDescr
    public LTDescr setMove()
    {
        this.type = TweenAction.MOVE;
        this.initInternal = ()=>{ this.from = trans.position; };
        this.easeInternal = ()=>{
            newVect = easeMethod();
            trans.position = newVect;
        };
        return this;
    }
LTDescr