What Wick Editor Version are you using?
1.19.3
Describe the Problem
Is it possible to add localStorage objects? I’m in the concept phase of an idle/incremental game and I just wanted to know if it would be possible to use wick’s scripting engine to save game data.
What have you tried so far?
I know with HTML you can use web storage objects like so:
// Store data
localStorage.setItem("gameLevel", "4");
// Retrieve data
document.getElementById("result").innerHTML = localStorage.getItem("gameLevel");