Exemplo n.º 1
0
 public void ApplyChange(FloatVariable amount)
 {
     Value += amount.Value;
 }
Exemplo n.º 2
0
 public void EnableAllInChildrenAfterXSeconds(FloatVariable seconds)
 {
     StartCoroutine(DisableAllInChildrenForXSecondsRoutine(seconds.Value));
 }
Exemplo n.º 3
0
 public void SetValue(FloatVariable value)
 {
     Value = value.Value;
 }
Exemplo n.º 4
0
        // PUBLIC

        public void DisableAllForXSeconds(FloatVariable seconds)
        {
            StartCoroutine(DisableAllForXSecondsRoutine(seconds.Value));
        }