8 lines
191 B
GDScript
8 lines
191 B
GDScript
@tool
|
|
extends EditorPlugin
|
|
|
|
func _enter_tree() -> void:
|
|
add_custom_type("Gift", "Node", preload("gift_node.gd"), preload("icon.png"))
|
|
|
|
func _exit_tree() -> void:
|
|
remove_custom_type("Gift")
|