Currently the database is stored in ProjectSettings which conventionally is checked in to version control. Doing so would lead to many merge conflicts.
I suggest moving it into either UserSettings or Library. I think in this case it might make the most sense to move it to Library since it does not contain "settings" (the only setting is the overlay toggle, which is stored in EditorPrefs).
Currently the database is stored in
ProjectSettings
which conventionally is checked in to version control. Doing so would lead to many merge conflicts.I suggest moving it into either
UserSettings
orLibrary
. I think in this case it might make the most sense to move it toLibrary
since it does not contain "settings" (the only setting is the overlay toggle, which is stored inEditorPrefs
).