This repository has been archived on 2024-02-25. You can view files and clone it, but cannot push or open issues or pull requests.
Wol/addons/Wol/plugin.gd

13 lines
211 B
GDScript

tool
extends EditorPlugin
func _enter_tree():
add_custom_type(
'Wol',
'Node',
load('res://addons/Wol/Wol.gd'),
load('res://addons/Wol/icon-white.svg')
)
func _exit_tree():
remove_custom_type('Wol')