Beispiel #1
0
 public void ShowWrongColor()
 {
     base.Open(this.wrongColor, FMPopupManager.FMPopupPriority.ForceOpen);
     TapticEngine.Trigger(TapticEngine.FeedbackType.Light);
 }
Beispiel #2
0
 public void ShowEmptyHints()
 {
     base.Open(this.hintsEmpty, FMPopupManager.FMPopupPriority.Normal);
     TapticEngine.Trigger(TapticEngine.FeedbackType.Light);
 }
Beispiel #3
0
 public void ShowPicSaved()
 {
     base.Open(this.picSaved, FMPopupManager.FMPopupPriority.Normal);
     TapticEngine.Trigger(TapticEngine.FeedbackType.Light);
 }
Beispiel #4
0
 public void ShowPaletteError(int id)
 {
     this.paletterLabel.text = LocalizationService.Instance.GetTextByKey("game_wrongPalette").Replace("1", id.ToString());
     base.Open(this.palette, FMPopupManager.FMPopupPriority.ForceOpen);
     TapticEngine.Trigger(TapticEngine.FeedbackType.Light);
 }
Beispiel #5
0
 public void ShowHintAlreadyPainted()
 {
     base.Open(this.hintAlreadyPainted, FMPopupManager.FMPopupPriority.ForceOpen);
     TapticEngine.Trigger(TapticEngine.FeedbackType.Light);
 }
Beispiel #6
0
 public void ShowHintPickColor()
 {
     base.Open(this.hintSelectColor, FMPopupManager.FMPopupPriority.ForceOpen);
     TapticEngine.Trigger(TapticEngine.FeedbackType.Light);
 }