I would like to save my game progress for later to be loaded back in.
Any idea how we can save game data at a local or backend location so we can load the data to be used back in the game?
I would like to save my game progress for later to be loaded back in.
Any idea how we can save game data at a local or backend location so we can load the data to be used back in the game?
Hi! This is a great idea and definitely something Iβm personally interested in and have been looking into.
There isnβt a built in solution for this however if you want to save progress on the device you can use Javascript LocalStorage APIs. If you want to save progress online youβll need to create a module for your experience with a backend function that talks to an external database when a request is made to save the playerβs data as JSON or similar.