Files
tactical-shooter/project.godot
T
shawn d060ac449d fix: suppress 3 benign startup warnings on Windows client
- Create missing server/plugins/ dir with .gdignore (stops PluginManager warning)

- Create config/default_server_config.cfg (stops ServerConfig error)

- Reorder light look_at after add_child (stops 'not in tree' warning)

- Switch rendering_method from opengl3 to forward_plus (RTX 2080 Vulkan works fine; gray screen was server-scene issue not OpenGL)
2026-07-02 00:05:27 -04:00

33 lines
855 B
Plaintext

; 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="Tactical Shooter"
config/description="Phase 0 — Headless Dedicated Server"
run/main_scene="res://scenes/entry.tscn"
config/features=PackedStringArray("4.7", "Forward Plus")
[autoload]
NetworkManager="*res://scripts/network/network_manager.gd"
ServerConfig="*res://scripts/config/server_config.gd"
PluginManager="*res://server/scripts/plugin_api/plugin_manager.gd"
[physics]
common/physics_ticks_per_second=128
common/enable_pause_aware_picking=true
[rendering]
renderer/rendering_method="forward_plus"
environment/default_clear_color=Color(0.1, 0.1, 0.15, 1)