7 public enum StatusOverlayState
24 get {
return _instance._state != StatusOverlayState.Hidden; }
30 public static string Text
32 get {
return _instance._text; }
35 _instance._text = value;
36 _instance._textElement.text = _instance._text;
43 public static StatusOverlayState
State
45 get {
return _instance._state; }
50 StatusOverlayState _state;
53 MaskableGraphic[] _renderers;
58 _textElement = GetComponentInChildren<Text>();
59 _renderers = GetComponentsInChildren<MaskableGraphic>();
60 _state = StatusOverlayState.Hidden;
69 _instance._state = StatusOverlayState.ShowingStatus;
70 _instance.SetRenderersEnabled(
true);
79 _instance._state = StatusOverlayState.ShowingError;
80 _instance.SetRenderersEnabled(
true);
89 _instance._state = StatusOverlayState.Hidden;
90 _instance.SetRenderersEnabled(
false);
93 void SetRenderersEnabled (
bool enabled)
95 for (
int i = 0; i < _renderers.Length; i++)
97 _renderers[i].enabled = enabled;
103 if (_state == StatusOverlayState.ShowingError)
static void ShowError(string error)
Show the overlay with a given error message.
static bool IsVisible
Gets whether or not the overlay is currently visible.
An overlay for displaying game status on the game client.
static StatusOverlayState State
Gets the current state of the overlay.
static void ShowStatus(string status)
Show the overlay with a given status message.
static bool GetActionDown(ControlsAction action)
Checks if the given action has just been pressed down.
static void Hide()
Hide the overlay.
static string Text
Gets the text that the overlay is currently displaying.
Controls class. Allows for controls queries and controls injection from devices.