From c79eb665a170919b59f173ac04b2824f9c0fd500 Mon Sep 17 00:00:00 2001 From: AGulev Date: Tue, 10 Dec 2024 12:42:30 +0100 Subject: [PATCH] remove old file --- spine_tester/generated/gui.gui_script | 41 --------------------------- 1 file changed, 41 deletions(-) delete mode 100644 spine_tester/generated/gui.gui_script diff --git a/spine_tester/generated/gui.gui_script b/spine_tester/generated/gui.gui_script deleted file mode 100644 index 949c82a..0000000 --- a/spine_tester/generated/gui.gui_script +++ /dev/null @@ -1,41 +0,0 @@ -function init(self) - -- Add initialization code here - -- Learn more: https://defold.com/manuals/script/ - -- Remove this function if not needed -end - -function final(self) - -- Add finalization code here - -- Learn more: https://defold.com/manuals/script/ - -- Remove this function if not needed -end - -function update(self, dt) - -- Add update code here - -- Learn more: https://defold.com/manuals/script/ - -- Remove this function if not needed -end - -function on_message(self, message_id, message, sender) - -- Add message-handling code here - -- Learn more: https://defold.com/manuals/message-passing/ - -- Remove this function if not needed -end - -function on_input(self, action_id, action) - -- Add input-handling code here. The game object this script is attached to - -- must have acquired input focus: - -- - -- msg.post(".", "acquire_input_focus") - -- - -- All mapped input bindings will be received. Mouse and touch input will - -- be received regardless of where on the screen it happened. - -- Learn more: https://defold.com/manuals/input/ - -- Remove this function if not needed -end - -function on_reload(self) - -- Add reload-handling code here - -- Learn more: https://defold.com/manuals/hot-reload/ - -- Remove this function if not needed -end