LTDescr.setCanvasScale C# (CSharp) Method

setCanvasScale() public method

public setCanvasScale ( ) : LTDescr
return LTDescr
    public LTDescr setCanvasScale()
    {
        this.type = TweenAction.CANVAS_SCALE;
        this.initInternal = ()=>{ this.from = this.rectTransform.localScale; };
        this.easeInternal = ()=>{ this.rectTransform.localScale = easeMethod(); };
        return this;
    }
LTDescr