First full commit version. Original Files

This commit is contained in:
2026-06-02 09:12:22 -07:00
parent ca54d7073f
commit 80979dff66
824 changed files with 20587 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
@tool
extends EditorPlugin
var timer : float = 0.0
var timeout : float = 60.0
func _enter_tree():
# Initialization of the plugin goes here.
pass
func _exit_tree():
# Clean-up of the plugin goes here.
pass
func _physics_process(delta):
timer += delta
if timer > timeout:
timer -= timeout
EditorInterface.save_all_scenes()
print("Autosaved")