15 lines
355 B
GDScript3
15 lines
355 B
GDScript3
|
@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)
|