コード例 #1
0
 private bool onHudInitCompleted(HudEvents.HudInitComplete evt)
 {
     eventDispatcher.RemoveListener <HudEvents.HudInitComplete>(onHudInitCompleted);
     if (actionOnSpawned != null)
     {
         executeSpawedAction(actionOnSpawned);
     }
     return(false);
 }
コード例 #2
0
 private bool onHudInitCompleted(HudEvents.HudInitComplete evt)
 {
     Service.Get <EventDispatcher>().RemoveListener <HudEvents.HudInitComplete>(onHudInitCompleted);
     showNotification();
     return(false);
 }
コード例 #3
0
ファイル: QuestPlayer.cs プロジェクト: smdx24/CPI-Source-Code
 private bool onHudInitCompleted(HudEvents.HudInitComplete evt)
 {
     activeQuest = questService.ActiveQuest;
     questService.QuestPlayerIsReady = true;
     return(false);
 }