diff options
Diffstat (limited to 'demos/plugins/custom_node/heart_plugin.gd')
-rw-r--r-- | demos/plugins/custom_node/heart_plugin.gd | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/demos/plugins/custom_node/heart_plugin.gd b/demos/plugins/custom_node/heart_plugin.gd deleted file mode 100644 index 01a6177c9b..0000000000 --- a/demos/plugins/custom_node/heart_plugin.gd +++ /dev/null @@ -1,18 +0,0 @@ -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") - - - - -
\ No newline at end of file |