Online quiz game

Hi,

I am building online quiz game. My question is where should I save questions if it is made for webgl? Also I want to be able to edit questions when game is put on site. Game is single player but placed on website. How would you do it?

Thanks!

If you don’t want to make a webservice for the questions, then just put them in the client.
You can build and update the WebGL files on the server. Whoever opens the client, will get the latest build with the latest questions.
Done.

Alternatively, look up “Addressables” to store the questions on some web host. You’d still create packages (of questions) with Unity but the client itself is not (necessarily) updated to get new questions in.

1 Like