LTDescr.setCanvasMove C# (CSharp) 메소드

setCanvasMove() 공개 메소드

public setCanvasMove ( ) : LTDescr
리턴 LTDescr
    public LTDescr setCanvasMove()
    {
        this.type = TweenAction.CANVAS_MOVE;
        this.initInternal = ()=>{ this.fromInternal = this.rectTransform.anchoredPosition3D; };
        this.easeInternal = ()=>{ this.rectTransform.anchoredPosition3D = easeMethod(); };
        return this;
    }
LTDescr