Set Players Ready
Toggle Player Ready State

#include "Lobby/KronosLobbyPlayerState.h"// Get the local player state.
AKronosLobbyPlayerState* PlayerState = GetLocalPlayerState();
if (PlayerState)
{
// Toggle the ready state of the player.
PlayerState->TogglePlayerIsReady();
}Last updated