4
0
Fork 0
WolfBox/addons/GodotWebHTTPHack/plugin.gd

15 lines
355 B
GDScript3
Raw Permalink Normal View History

2025-05-31 22:21:22 +01:00
@tool
extends EditorPlugin
const ExportPlugin = preload("res://addons/GodotWebHTTPHack/export_plugin.gd")
var export_plugin = ExportPlugin.new()
func _enter_tree() -> void:
# Initialization of the plugin goes here.
add_export_plugin(export_plugin)
func _exit_tree() -> void:
# Clean-up of the plugin goes here.
remove_export_plugin(export_plugin)