9 lines
203 B
GDScript
9 lines
203 B
GDScript
@tool
|
|
extends EditorPlugin
|
|
|
|
func _enter_tree():
|
|
add_custom_type("HTTPSSEClient", "Node", preload("HTTPSSEClient.gd"), preload("icon.png"))
|
|
|
|
func _exit_tree():
|
|
remove_custom_type("HTTPSSEClient")
|