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