public static void Trigger(MMSoundManagerSoundControlEventTypes eventType, int soundID, AudioSource source = null)
 {
     e.SoundID      = soundID;
     e.TargetSource = source;
     e.MMSoundManagerSoundControlEventType = eventType;
     MMEventManager.TriggerEvent(e);
 }
 public MMSoundManagerSoundControlEvent(MMSoundManagerSoundControlEventTypes eventType, int soundID, AudioSource source = null)
 {
     SoundID      = soundID;
     TargetSource = source;
     MMSoundManagerSoundControlEventType = eventType;
 }