From 30dcb9454812e28924a938c15501515783b1ecb2 Mon Sep 17 00:00:00 2001 From: blujai831 Date: Tue, 13 Feb 2024 10:25:13 -0800 Subject: [PATCH] Changed project organization somewhat: instead of having an autoload directory, autoloads will be sorted into directories based on what they do. Wait is basically a utility class, so it goes in util. --- project.godot | 2 +- {autoload/Wait => util}/Wait.gd | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename {autoload/Wait => util}/Wait.gd (100%) diff --git a/project.godot b/project.godot index 59d61a5..b08db2f 100644 --- a/project.godot +++ b/project.godot @@ -20,7 +20,7 @@ buses/default_bus_layout="res://audio/default_bus_layout.tres" [autoload] -Wait="*res://autoload/Wait/Wait.gd" +Wait="*res://util/Wait.gd" [gui] diff --git a/autoload/Wait/Wait.gd b/util/Wait.gd similarity index 100% rename from autoload/Wait/Wait.gd rename to util/Wait.gd