Jelajahi Sumber

:baby: Create empty plugin

DricomDragon 2 tahun lalu
induk
melakukan
2b929866e8
2 mengubah file dengan 19 tambahan dan 0 penghapusan
  1. 7 0
      godot/addons/slide_show/plugin.cfg
  2. 12 0
      godot/addons/slide_show/plugin.gd

+ 7 - 0
godot/addons/slide_show/plugin.cfg

@@ -0,0 +1,7 @@
+[plugin]
+
+name="SlideShowPlugin"
+description="A plugin to easily create and animate slides in Godot 4."
+author="Jovian HERSEMEULE"
+version="1.0.0"
+script="plugin.gd"

+ 12 - 0
godot/addons/slide_show/plugin.gd

@@ -0,0 +1,12 @@
+@tool
+extends EditorPlugin
+
+
+func _enter_tree():
+	# Initialization of the plugin goes here.
+	pass
+
+
+func _exit_tree():
+	# Clean-up of the plugin goes here.
+	pass