-
Notifications
You must be signed in to change notification settings - Fork 965
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ButtonClicker bugs #264
Comments
Good catch! Fixes incoming... |
use Multiplayer.EXTRA_INVITATION when retrieving an invitiation Addresses both issues in #264 Change-Id: I8c3c9673bccad6d05e056b8583eb3d8cb89452c6
Hi @denri11, the latest code should fix the issue. I added some extra protections in there too. If you find any other oddities, feel free to re-open, or even submit your on PR! |
Hi. onRoomCreated(int statusCode, Room room) method throws an error: Other references describing the problem: Thanks. |
Hello, I have the same problem with multiplayer. Many users notify me about problems with multiplayer. Usually it's from Russian. I checked If I use VPN - Russia multiplayer doesn't work, if some different countries - it's work. |
use Multiplayer.EXTRA_INVITATION when retrieving an invitiation Addresses both issues in #264 Change-Id: I8c3c9673bccad6d05e056b8583eb3d8cb89452c6
1) In the multiplayer game mode after connection established there is no way to go to screen_game scene. That’s because when onConnected() method called then always switchToMainScreen() method called. Default Waiting room UI calls onPause() on Activity, and in onResume() always called signInSilently() with this sequence of calls:
showWaitingRoom(room) -> onPause() -> startGame(true) -> switchToScreen(R.id.screen_game) -> onResume() -> signInSilently() -> onConnected() -> switchToMainScreen()
2) In onConnected() method
Multiplayer.EXTRA_TURN_BASED_MATCH should be replaced on Multiplayer.EXTRA_INVITATION
The text was updated successfully, but these errors were encountered: