LTDescr.setOnUpdateVector3 C# (CSharp) Method

setOnUpdateVector3() public method

public setOnUpdateVector3 ( Action onUpdate ) : LTDescr
onUpdate Action
return LTDescr
    public LTDescr setOnUpdateVector3( Action<Vector3> onUpdate )
    {
        this._optional.onUpdateVector3 = onUpdate;
        this.hasUpdateCallback = true;
        return this;
    }
LTDescr