|
@@ -3,10 +3,12 @@ extends EditorPlugin
|
|
|
|
|
|
|
|
|
func _enter_tree():
|
|
|
- # Initialization of the plugin goes here.
|
|
|
- pass
|
|
|
+ add_custom_type("Focus", "Camera2D", preload("res://addons/slide_show/projector/focus/Focus.gd"), preload("res://icon.svg"))
|
|
|
+ add_custom_type("Show", "Node2D", preload("res://addons/slide_show/projector/show/Show.gd"), preload("res://icon.svg"))
|
|
|
+ add_custom_type("Slide", "Node2D", preload("res://addons/slide_show/projector/slide/Slide.gd"), preload("res://icon.svg"))
|
|
|
|
|
|
|
|
|
func _exit_tree():
|
|
|
- # Clean-up of the plugin goes here.
|
|
|
- pass
|
|
|
+ remove_custom_type("Slide")
|
|
|
+ remove_custom_type("Show")
|
|
|
+ remove_custom_type("Focus")
|