Hello Construct Forums!
I'm currently working on a racing game and I want to add a "custom machines" feature where players can upload their own PNG images to the game and use them as playable machines to race as. I've already implemented the code that allows the PNGs to be used as the machine, and you're able to race as it and stuff.
But I want to know how to keep this image in the game's save data, so that way you don't have to upload it every single time you play. How would I go about doing this? I tried saving the image URL (FileChooser.FileURLAt(0)) to the LocalStorage, which works but when I tried to load the image URL again after restarting the project nothing would happen, and I think it has something to do with the fact that the URL starts with "blob:" meaning it only exists in the browser's short term memory. How do I get this URL to properly be saved in the browser's long term memory?
Sorry if this is complicated, I can provide more information such as screenshots if needed.