Removing autosave plugin

This commit is contained in:
2026-06-02 09:53:01 -07:00
parent e5e1666b98
commit d1cdd4490e
2 changed files with 0 additions and 28 deletions
-7
View File
@@ -1,7 +0,0 @@
[plugin]
name="autosave_g4"
description="a plugin to run auto save every minute"
author="babypandabear3"
version=""
script="plugin.gd"
-21
View File
@@ -1,21 +0,0 @@
@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")