Is it possible to pause a turn based battle system?
I want to start dialogue in the middle of combat (pausing/stopping the battle) and resume it after the dialogue is finished.
Currently I'm running into problems where enemy combatants will move and attack while the dialogue is running.
This is some code that I currently use for trying to pause combat but none of it is doing what I want.
How's that dialgoue or cutscene started?
The easiest way would be to have them as part of the battle, e.g. as (battle) turn start/end schematics or special abilities that do this dialogue/cutscene.
If you're enjoying my products, updates and support, please consider supporting me on patreon.com!
E.g. use a general battle turn start schematic in your battles that checks for certain conditions and start another schematic with your dialogue/cutscene based on that.
Like, a global variable being set to something, checking the battle turn, etc.
You can just extend that schematic with more and more such cutscenes based on different conditions, e.g. using the same global variable having different values (e.g. string variable).
ORK.Battle.Turn gives you access to the battle turn, you can also change it there.
If you're enjoying my products, updates and support, please consider supporting me on patreon.com!