#Best way to save whats in my plugin

1 messages · Page 1 of 1 (latest)

minor bison
#

Im making a plugin thats let people make a todo list and roadmap, what's the best way i could save the plugin scene so whenever you close and open godot all your notes, todo's and roadmaps dont get deleted.

Is there anything built in for saving plugins or will I need to store the menu in some sort of file so it can be loaded and saved automatically

iron vault
#

Anything that should persist must be saved to a file. Saving a scene is almost never a good solution, specially not for something this simple. (You'll spend more time creating code for sanitizing the loaded scene than it would take to create a proper save/load system, without mentioning the worse performance)

You can look at the Kanban plugin for an example, it does something similar.

minor bison
#

Alrighty I’ll just setup a save system then have one I already made that I can probably use. Was mostly just wondering if there was any built in methods. Thank you 🙂