Hi Chris
Is there an EventManager event that will fire when the game is paused? That is, I have menus that have Pause Game ticked, and I want to know when that pauses the game for my own script.
Currently I'm checking for the name of the Menu that is being shown, but I'd prefer to just trigger against the game being paused.
I can't see an OnPause, or anything Time related (other than Timers).
Olly
It looks like you're new here. If you want to get involved, click one of these buttons!
Comments
Not in the Event Manager, as pausing the game affects the way ActionLists are played back. However, it is possible through script using the OnEnterGameState event:
Perfect. Thanks. That'll help no end.