예제 #1
0
 void OnBeginYearEvent(BeginYearEvent e)
 {
     evictButton.SetActive(false);
 }
 void OnBeginYearEvent(BeginYearEvent e)
 {
     buttonBlocker.gameObject.SetActive(true);
 }
예제 #3
0
파일: Clock.cs 프로젝트: jayvachon/my-lord
 void OnBeginYearEvent(BeginYearEvent e)
 {
     Events.instance.Raise(new NewMonthEvent());
     Game.State = GameState.InYear;
 }
예제 #4
0
 void OnBeginYearEvent(BeginYearEvent e)
 {
     rentEditGroup.SetActive(false);
     rentAmount.gameObject.SetActive(true);
     rentAmount.text = string.Format("${0}", unit.Rent.ToDisplay());
 }