コード例 #1
0
 private bool OnUpdate(UpdateMessage updateMessage)
 {
     if(!Disabled && string.IsNullOrEmpty(CurrentNotification))
     {
         Disabled = true;
     }
     else
     {
         UpdateDialog();
     }
     return false;
 }
コード例 #2
0
 private bool OnUpdateMessage(UpdateMessage updateMessage)
 {
     if(_notificationScreenController.Disabled && !string.IsNullOrEmpty(_gameData?.CurrentNotification))
     {
         _notificationScreenController.Disabled = false;
     }
     return false;
 }