GAudio.PulseModule.UnregisterPulseController C# (CSharp) Method

UnregisterPulseController() public method

public UnregisterPulseController ( IGATPulseController controller ) : void
controller IGATPulseController
return void
        public void UnregisterPulseController( IGATPulseController controller )
        {
            if( controller.OnPulseControl != _onPulseControl )
            {
                #if UNITY_EDITOR
                Debug.LogWarning( "The registered controller must unregister itself." );
                #endif
                return;
            }
            _onPulseControl = null;
        }