Tango.Tango3DReconstruction.RegisterGridIndicesDirty C# (CSharp) Method

RegisterGridIndicesDirty() private method

Register a Unity main thread handler for the GridIndicesDirty event.
private RegisterGridIndicesDirty ( OnTango3DReconstructionGridIndiciesDirtyEventHandler handler ) : void
handler OnTango3DReconstructionGridIndiciesDirtyEventHandler Event handler to register.
return void
        internal void RegisterGridIndicesDirty(OnTango3DReconstructionGridIndiciesDirtyEventHandler handler)
        {
            if (handler != null)
            {
                m_onGridIndicesDirty += handler;
            }
        }