Add sub scene to current state as sub state? #1219
chengenzhao
started this conversation in
Ideas
Replies: 1 comment 1 reply
-
Solved @Override
public boolean isAllowConcurrency() {
return true;
} Then it will allow concurrent running |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi:
We are using game sub scene for demonstrating battle scene now
The problem is if we push new sub scene
then the previous game scene will freeze/stop updating
and we hope to add a new game scene but without interrupting previous game scene
we need both game scenes to update during the game
and we read the source code
seems like the state machine allows current state to have more sub states
so is it possible to provide a method like
to add new sub scene to the current state as sub state rather than replace it
since the previous state will stop updating when new sub scene replace the current state as new state
It seems like is an easy methods to implements?
Thanks
Beta Was this translation helpful? Give feedback.
All reactions