Example #1
0
 void Awake()
 {
     this.health.Subscribe(newValue =>
     {
         Debug.Log($"New Value: {newValue}");
         healthBar.Animate(newValue);
     });
     TransitionTo(State.IDLE);
 }