Tango.Tango3DReconstruction.UnregisterGridIndicesDirty C# (CSharp) Method

UnregisterGridIndicesDirty() private method

Unregister a Unity main thread handler for the Tango depth event.
private UnregisterGridIndicesDirty ( OnTango3DReconstructionGridIndiciesDirtyEventHandler handler ) : void
handler OnTango3DReconstructionGridIndiciesDirtyEventHandler Event handler to unregister.
return void
        internal void UnregisterGridIndicesDirty(OnTango3DReconstructionGridIndiciesDirtyEventHandler handler)
        {
            if (handler != null)
            {
                m_onGridIndicesDirty -= handler;
            }
        }