Anyone Have a Solution TO my Problem
iWin
Member Posts: 334
IN my game i have a pause button but when i hit resume nothing in my game scene works..i cant shoot and none of the enemy fall down so basically when you hit the pause button its game over...anyone know how to fix this..its so frustrating...
Comments
If you are just using a boolean global variable in your actors to stop when the variable is true, try using a timer in each actor to check the status of the variable.
Up until 8.0+, you could just say:
if pause is false, do blah blah
otherwise, don't do anything
...and the actor would work whenever pause was changed.
To increase efficiency in 8.0+, it doesn't seem to work that way anymore, and simply using a timer in each actor to check on the status of the variable should do it.