From 7bfa7fcf02124a4508dffa9d78e8ef921b86a315 Mon Sep 17 00:00:00 2001 From: Lucas Fryzek Date: Sun, 17 Sep 2023 22:00:55 -0400 Subject: Setup basic player controller --- addons/third-person-camera/tpc.gd | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 addons/third-person-camera/tpc.gd (limited to 'addons/third-person-camera/tpc.gd') diff --git a/addons/third-person-camera/tpc.gd b/addons/third-person-camera/tpc.gd new file mode 100644 index 0000000..45a417e --- /dev/null +++ b/addons/third-person-camera/tpc.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 -- cgit