Example #1
0
            public void Stop(bool immediate)
            {
                var res = Event.stop(immediate);

                if (res == RESULT.ERR_INVALID_HANDLE)
                {
                    EventIsOver = true;
                    return;
                }
            }
Example #2
0
 // Stop's the sound of the current Event
 public void stop(ref FMOD.Event evt)
 {
     evt.stop();
 }