Release 0.2.0: device-aware controls, spear, settings, shaders

Show touch controls only on touch platforms and keyboard hints only on
desktop, via a shared Controls.use_touch_ui() gate (is_touchscreen_available
is unreliable with emulate_touch_from_mouse). Bumps version to 0.2.0.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-08-09 19:39:37 +03:00
parent ce6f3d7075
commit 56593c58cf
35 changed files with 1885 additions and 242 deletions
+10 -1
View File
@@ -11,11 +11,15 @@ config_version=5
[application]
config/name="Bullosseum"
config/version="0.1.0"
config/version="0.2.0"
run/main_scene="res://MainMenu.tscn"
config/features=PackedStringArray("4.7", "Forward Plus")
config/icon="res://icon.svg"
config/run/main_scene="res://MainMenu.tscn"
boot_splash/bg_color=Color(0, 0, 0, 1)
boot_splash/image="res://Assets/loading_screen.png"
boot_splash/fullsize=true
boot_splash/use_filter=true
[autoload]
@@ -23,6 +27,7 @@ DP="*res://debug_params.gd"
Console="*res://console.gd"
Controls="*res://controls_manager.gd"
DebugDraw="*res://debug_draw.gd"
Settings="*res://settings.gd"
[editor_plugins]
@@ -102,6 +107,10 @@ ability_roll={
]
}
[input_devices]
pointing/emulate_touch_from_mouse=true
[physics]
3d/physics_engine="Jolt Physics"