Пример #1
0
 void Awake()
 {
     _health.ObserveChange().Subscribe(health =>
     {
         GetComponent <Image>().fillAmount = 1.0f * health / _health.InitialValue;
     });
 }