예제 #1
0
 public ExtendedNotification(string text, Color color, ENotificationLocation location, float duration)
 {
     Content  = new GUIContent(text);
     Color    = color;
     Location = location;
     Duration = duration;
 }
 public void ShowNotificationError(string text, ENotificationLocation location, float duration)
 {
     AddControl(new ExtendedNotification(text, Color.red, location, duration));
 }
 public void ShowNotification(string text, ENotificationLocation location)
 {
     AddControl(new ExtendedNotification(text, Color.white, location, 1.25f));
 }