From 1b5cabd4c4713f767e274ace122d71c0dfbc7700 Mon Sep 17 00:00:00 2001 From: Ayo Reis Date: Mon, 8 Sep 2025 19:35:19 +0100 Subject: [PATCH 1/1] Create Godot project --- .gitignore | 1 + project.godot | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 .gitignore create mode 100644 project.godot diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0f10302 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.godot/ diff --git a/project.godot b/project.godot new file mode 100644 index 0000000..2ef5c8e --- /dev/null +++ b/project.godot @@ -0,0 +1,19 @@ +; 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="Rushbound" +config/features=PackedStringArray("4.4", "GL Compatibility") + +[rendering] + +renderer/rendering_method="gl_compatibility" +renderer/rendering_method.mobile="gl_compatibility" -- 2.49.0