Closed snoopdouglas closed 3 years ago
When exporting, I'm finding that Godot spits out a lot of warnings saying that steam.gd has been orphaned, a la:
steam.gd
WARNING: cleanup: ObjectDB instances leaked at exit (run with - -verbose for details).
It appears this can be fixed by changing _exit_tree to disable_plugin in plugin.gd.
_exit_tree
disable_plugin
plugin.gd
Change the cleanup to be in disable_plugin and don't see any warnings anymore :pray:
Awesome. Fixed in d9143f2fbdf9327556969eb98e0d4fae1bbddeb9
When exporting, I'm finding that Godot spits out a lot of warnings saying that
steam.gd
has been orphaned, a la:It appears this can be fixed by changing
_exit_tree
todisable_plugin
inplugin.gd
.