1 Risposta
- Più recenti
- Maggior numero di voti
- Maggior numero di commenti
1
Hi!
There are a couple of ways you could potentially do this.
Once the game session has started, you can invoke UpdatePlayerSessionCreationPolicy through the server SDK with a DENY_ALL policy. This prevents the game session from accepting new players
Alternatively if this decision is being made outside of the game server itself (for instance a backend client service):
- You could call the UpdateGameSession API with the required max player session count, to update the maximum number of players that can be connected simultaneously to the game session.
- You could call the UpdateGameSession API with a DENY_ALL player session creation policy. This will prevent the game session from accepting any new players.
Thanks!
con risposta un anno fa
Contenuto pertinente
- AWS UFFICIALEAggiornata 2 anni fa
- AWS UFFICIALEAggiornata un anno fa
- AWS UFFICIALEAggiornata 3 anni fa
Thanks! Will try this out and keep you updated!