LTDescr.setCanvasSizeDelta C# (CSharp) Méthode

setCanvasSizeDelta() public méthode

public setCanvasSizeDelta ( ) : LTDescr
Résultat 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