Customising when players submit stages
When players submit (end) a stage
player.stage.set("submit", true);player.stage.get("submit");What players see when they have submitted a stage
{
player.stage.get("submit")
? <div> Thank you for your answer. The next stage will start when all the other
players have submitted their answer. </div>
: <div><Question player={player} /></div>
}Last updated
Was this helpful?