Exemple #1
0
 public void ApplyChange(FloatVariable amount)
 {
     Value += amount.Value;
 }
 public void EnableAllInChildrenAfterXSeconds(FloatVariable seconds)
 {
     StartCoroutine(DisableAllInChildrenForXSecondsRoutine(seconds.Value));
 }
Exemple #3
0
 public void SetValue(FloatVariable value)
 {
     Value = value.Value;
 }
        // PUBLIC

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