Hey,
Is there a way where when I pause the game, I'm able to pause the dialogue system and typewriter effect?
When I pause, the dialogue continues when I push Z and that's not what I want.
Toggle Typewriter Effect & Pause Dialogue when in Pause
-
- Posts: 82
- Joined: Wed Mar 31, 2021 6:48 pm
-
- Posts: 82
- Joined: Wed Mar 31, 2021 6:48 pm
Re: Toggle Typewriter Effect & Pause Dialogue when in Pause
Thanks for the wonderful guide. I simply just added
to when it wasn't paused and
When it IS paused and changed the "Other Settings" to Gameplay and it seems to work! Thank you
Code: Select all
PixelCrushers.UIPanel.monitorSelection = true; // Allow dialogue UI to steal back input focus again.
PixelCrushers.UIButtonKeyTrigger.monitorInput = true; // Re-enable hotkeys.
Code: Select all
PixelCrushers.UIPanel.monitorSelection = false; // Don't allow dialogue UI to steal back input focus.
PixelCrushers.UIButtonKeyTrigger.monitorInput = false; // Disable hotkeys.
Re: Toggle Typewriter Effect & Pause Dialogue when in Pause
Great! Glad to help.