예제 #1
0
 public static void ShowConfirmationPopup(bool saveCurrentSelection, string msg, Action onConfirmation)
 {
     UIPopups.ShowConfirmationPopup(saveCurrentSelection, msg, onConfirmation);
 }
예제 #2
0
 public static void ShowIntSliderPopup(bool saveCurrentSelection, string title, int initialValue, int minValue, int maxValue, Action <bool, int> returnValue, Action <int> onValueChange)
 {
     UIPopups.ShowIntSliderPopup(saveCurrentSelection, title, initialValue, minValue, maxValue, returnValue, onValueChange);
 }
예제 #3
0
 public static void ShowSelectionPopup(bool saveCurrentSelection, string msg, string[] options, Action <bool, int> returnValue)
 {
     UIPopups.ShowSelectionPopup(saveCurrentSelection, msg, options, returnValue);
 }