13 lines
211 B
GDScript
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')
|