LTDescr.setCanvasSizeDelta C# (CSharp) Method

setCanvasSizeDelta() public method

public setCanvasSizeDelta ( ) : LTDescr
return LTDescr
    public LTDescr setCanvasSizeDelta()
    {
        this.type = TweenAction.CANVAS_SIZEDELTA;
        this.initInternal = ()=>{ this.from = this.rectTransform.sizeDelta; };
        this.easeInternal = ()=>{ this.rectTransform.sizeDelta = easeMethod(); };
        return this;
    }
LTDescr