StreamOverlay/addons/gdata_orm/plugin.gd
2026-02-23 18:38:03 -06:00

23 lines
404 B
GDScript

@tool
extends EditorPlugin
func _enable_plugin() -> void:
EditorInterface.set_plugin_enabled("./godot-sqlite", true)
pass
func _disable_plugin() -> void:
EditorInterface.set_plugin_enabled("./godot-sqlite", false)
# Remove autoloads here.
pass
func _enter_tree() -> void:
# Initialization of the plugin goes here.
pass
func _exit_tree() -> void:
# Clean-up of the plugin goes here.
pass