예제 #1
0
 public static void Trigger(float duration)
 {
     e.Duration = duration;
     MMEventManager.TriggerEvent(e);
 }
예제 #2
0
 public static void Trigger(AudioClip clipToPlay)
 {
     e.ClipToPlay = clipToPlay;
     MMEventManager.TriggerEvent(e);
 }
예제 #3
0
 public static void Trigger(float duration, float targetAlpha)
 {
     e.Duration    = duration;
     e.TargetAlpha = targetAlpha;
     MMEventManager.TriggerEvent(e);
 }
예제 #4
0
 public static void Trigger(string newName)
 {
     e.EventName = newName;
     MMEventManager.TriggerEvent(e);
 }