LTDescr.setCanvasMove C# (CSharp) Method

setCanvasMove() public method

public setCanvasMove ( ) : LTDescr
return 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