LTDescr.setCallback C# (CSharp) Method

setCallback() public method

public setCallback ( ) : LTDescr
return LTDescr
    public LTDescr setCallback()
    {
        this.type = TweenAction.CALLBACK;
        this.initInternal = ()=>{};
        this.easeInternal = this.callback;
        return this;
    }
LTDescr