5 public enum BalanceCondition
24 BalanceCondition _condition;
26 int _isOpenHash = Animator.StringToHash(
"IsOpen");
27 int _isAHash = Animator.StringToHash(
"IsA");
28 int _isBHash = Animator.StringToHash(
"IsB");
29 int _isCHash = Animator.StringToHash(
"IsC");
37 _animator = GetComponent<Animator>();
38 _aButton = transform.FindChild(
"a_selector").gameObject;
39 _bButton = transform.FindChild(
"b_selector").gameObject;
40 _cButton = transform.FindChild(
"c_selector").gameObject;
58 _animator.SetBool(_isOpenHash, _open);
60 _aButton.GetComponent<Button>().enabled = _condition == BalanceCondition.GenericBalance || _open;
61 _bButton.GetComponent<Button>().enabled = _condition == BalanceCondition.EffortBalance || _open;
62 _cButton.GetComponent<Button>().enabled = _condition == BalanceCondition.OneSpeedForAll || _open;
64 _aButton.GetComponent<CanvasGroup>().blocksRaycasts = _condition == BalanceCondition.GenericBalance || _open;
65 _bButton.GetComponent<CanvasGroup>().blocksRaycasts = _condition == BalanceCondition.EffortBalance || _open;
66 _cButton.GetComponent<CanvasGroup>().blocksRaycasts = _condition == BalanceCondition.OneSpeedForAll || _open;
77 get {
return _condition; }
83 _animator.SetBool(_isCHash, _condition == BalanceCondition.GenericBalance);
84 _animator.SetBool(_isBHash, _condition == BalanceCondition.EffortBalance);
85 _animator.SetBool(_isAHash, _condition == BalanceCondition.OneSpeedForAll);
87 _aButton.GetComponent<Button>().enabled = _condition == BalanceCondition.GenericBalance;
88 _bButton.GetComponent<Button>().enabled = _condition == BalanceCondition.EffortBalance;
89 _cButton.GetComponent<Button>().enabled = _condition == BalanceCondition.OneSpeedForAll;
91 _aButton.GetComponent<CanvasGroup>().blocksRaycasts = _condition == BalanceCondition.GenericBalance;
92 _bButton.GetComponent<CanvasGroup>().blocksRaycasts = _condition == BalanceCondition.EffortBalance;
93 _cButton.GetComponent<CanvasGroup>().blocksRaycasts = _condition == BalanceCondition.OneSpeedForAll;
BalanceCondition Condition
Condition Property
void ConditionButtonPressed(int conditionNum)
Used by the Unity GUI system which at the time of writing, could not pass enums using the GUI event s...
ClientConfig Config
Gets the configuration for this client.
static GameClient Instance
Gets the sole instance of the game client.
The ConditionSelector was used as part of a Summer Camp at Holland Bloorview in 2015 At the time...
bool Open
Opens the conditon selector by setting animation states and enabling the buttons. ...