6fc1c3a4d1
Not all APIs are provided yet, please request whathever you are missing. Some example plugins are provided in demos/plugins. Just copy them to a folder in your project named addons/ and then enable them from the project settings. Have fun!
18 lines
No EOL
356 B
GDScript
18 lines
No EOL
356 B
GDScript
tool
|
|
extends EditorPlugin
|
|
|
|
|
|
func _enter_tree():
|
|
# When this plugin node enters tree, add the custom type
|
|
|
|
add_custom_type("Heart","Node2D",preload("res://addons/custom_node/heart.gd"),preload("res://addons/custom_node/heart_icon.png"))
|
|
|
|
func _exit_tree():
|
|
# When the plugin node exits the tree, remove the custom type
|
|
|
|
remove_custom_type("Heart")
|
|
|
|
|
|
|
|
|
|
|