GAudio.PulseModule.RegisterPulseController C# (CSharp) Method

RegisterPulseController() public method

public RegisterPulseController ( IGATPulseController controller ) : bool
controller IGATPulseController
return bool
        public bool RegisterPulseController( IGATPulseController controller )
        {
            if( _onPulseControl != null )
            {
                #if UNITY_EDITOR
                Debug.LogWarning( "There is already a registered controller for this pulse." );
                #endif
                return false;
            }
            _onPulseControl = controller.OnPulseControl;
            return true;
        }