Hi guys
it’s me again.
I am wondering about the subject.
I have a game level. It contains a game object with a GUI component. I want to pause the level when a popup from the GUI is open. So chatGPT recommended using this code
msg.post("level_proxy", "set_time_step", {
factor = 0,
mode = 0
})
But, in that case, everything pauses along the level. I mean I have a lot of animations and particles inside the GUI component, and they are also paused.
I tried to put the GUI in a separate collection, but it doesn’t help. I am sure that my case is obvious and common, and the community has a “best practice” to solve this.