Liberi
An exergame built for kids with CP!
GUIControlsAction.cs
1 using UnityEngine;
2 using UnityEngine.UI;
3 using System.Collections;
4 
9 [Script(ScriptRole.Client)]
10 public class GUIControlsAction : MonoBehaviour
11 {
15  public ControlsAction GoverningAction;
16 
17  public bool Enabled
18  {
19  get
20  {
21  return _enabled;
22  }
23 
24  private set
25  {
26  if (_enabled == value)
27  return;
28 
29  _enabled = value;
30  if (_enabled)
31  {
32  for (int i = 0; i < _graphics.Length; i++)
33  _graphics[i].CrossFadeAlpha(1.0f, 0.1f, true);
34  }
35  else
36  {
37  for (int i = 0; i < _graphics.Length; i++)
38  _graphics[i].CrossFadeAlpha(0.5f, 0.1f, true);
39  }
40  }
41  }
42 
43  Text _textElement;
44  MaskableGraphic[] _graphics;
45  bool _enabled = true;
46 
47  void Awake()
48  {
49  _textElement = GetComponentInChildren<Text>();
50  _graphics = GetComponentsInChildren<MaskableGraphic>();
51  }
52 
53  void Update()
54  {
55  _textElement.text = Controls.GetActionCaption(GoverningAction);
56  Enabled = _textElement.text != "" && Controls.IsActionEnabled(GoverningAction);
57  }
58 }
A visual representation of a ControlsAction. Automatically updates when the GoverningAction changes t...
ControlsAction GoverningAction
The Controls Action that governs the state of this GUI element.
static string GetActionCaption(ControlsAction action)
Returns the current caption for a given action.
Definition: Controls.cs:160
static bool IsActionEnabled(ControlsAction action)
Checks if a given action is enabled.
Definition: Controls.cs:173
Controls class. Allows for controls queries and controls injection from devices.
Definition: Controls.cs:41