From e231e48626f742eb87f4f46d779f69604cb7977a Mon Sep 17 00:00:00 2001 From: Rob Kelly Date: Wed, 17 Jul 2024 19:18:16 -0600 Subject: [PATCH] Added default project.godot --- .gitea/template | 3 ++- project.godot | 40 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+), 1 deletion(-) create mode 100644 project.godot diff --git a/.gitea/template b/.gitea/template index 4eb04f0..1fe175c 100644 --- a/.gitea/template +++ b/.gitea/template @@ -1,2 +1,3 @@ -# Insert title in README +# Insert title in README & project.godot /README.md +/project.godot diff --git a/project.godot b/project.godot new file mode 100644 index 0000000..c9043b8 --- /dev/null +++ b/project.godot @@ -0,0 +1,40 @@ +; Engine configuration file. +; It's best edited using the editor UI and not directly, +; since the parameters that go here are not all obvious. +; +; Format: +; [section] ; section goes between [] +; param=value ; assign values to parameters + +config_version=5 + +[application] + +config/name="${REPO_NAME_TITLE}" +config/features=PackedStringArray("4.2", "Forward Plus") +run/max_fps=60 +config/icon="res://icon.svg" + +[debug] + +gdscript/warnings/untyped_declaration=2 +gdscript/warnings/unsafe_property_access=2 +gdscript/warnings/unsafe_method_access=2 +gdscript/warnings/unsafe_cast=1 +gdscript/warnings/unsafe_call_argument=2 + +[display] + +window/stretch/mode="canvas_items" + +[dotnet] + +project/assembly_name="${REPO_NAME_TITLE}" + +[editor] + +movie_writer/movie_file="demos/demo.avi" + +[editor_plugins] + +enabled=PackedStringArray("res://addons/format_on_save/plugin.cfg", "res://addons/gdlint_plugin/plugin.cfg")