diff options
author | bd <bdunahu@operationnull.com> | 2025-05-19 17:54:39 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-05-19 17:54:39 -0400 |
commit | 142ae6688ff54c91944e61407572cc64a2a9b003 (patch) | |
tree | 95aa69fbc3feecea0c526e158216aad1be945bc9 /project.godot | |
parent | 3297ba2f333088fe3d8b7b7e0b76cd14b475bcaf (diff) |
Added soldier crawler, pathing, basic spawning
Diffstat (limited to 'project.godot')
-rw-r--r-- | project.godot | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/project.godot b/project.godot new file mode 100644 index 0000000..8dcf514 --- /dev/null +++ b/project.godot @@ -0,0 +1,29 @@ +; 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="pixel-defense-2" +run/main_scene="uid://b5axbupv3ofi5" +config/features=PackedStringArray("4.4", "GL Compatibility") +config/icon="res://icon.svg" + +[display] + +window/size/viewport_width=320 +window/size/viewport_height=240 +window/stretch/mode="viewport" + +[rendering] + +textures/canvas_textures/default_texture_filter=0 +renderer/rendering_method="gl_compatibility" +renderer/rendering_method.mobile="gl_compatibility" +environment/defaults/default_clear_color=Color(0, 0, 0, 1) |