I'm guessing probably not, but still, does anybody knows if there is a way to exclude dictionaries from being saved with the official save feature?
open "\exporters\html5\plugins\dictionary\runtime.js"
find
instanceProto.saveToJSON = function () { return this.dictionary; };
change line
instanceProto.saveToJSON = function () { //return this.dictionary; };
Thanks for the quick answer!
Can this be applied to one specific dictionary?
The thing is most of my dictionaries holds user data and I do want to save those, but one is used for texts and translations, which keeps getting bigger with each language.
Develop games in your browser. Powerful, performant & highly capable.
You can destroy or erase data in this dictionary before saving, and in "On load" event restore it again.
Great, simple enough, cant believe I did not think of it, cheers!