Unify menu presentation and fix UI regressions

This commit is contained in:
Alexander Sellite 2026-07-30 10:46:15 -04:00
parent 3734d4a168
commit b18d9392d8
35 changed files with 588 additions and 361 deletions

View file

@ -26,8 +26,7 @@ var appearance_snapshot: Dictionary = (
func apply_appearance_snapshot(snapshot: Dictionary) -> void:
if CharacterCustomizationCatalog.validate_snapshot(snapshot):
appearance_snapshot = snapshot.duplicate(true)
# Current gameplay art is monolithic. This seam intentionally stores the
# validated state until modular visual parts are available.
PlayerVisualPresenter.apply_appearance(_visuals, appearance_snapshot)
class ShowcaseCameraSnapshot:
extends RefCounted
@ -495,6 +494,10 @@ func set_camera_input_enabled(enabled: bool) -> void:
_camera_dragging = false
func set_camera_active(active: bool) -> void:
_camera.current = active
func apply_camera_settings(
new_mouse_sensitivity: float,
new_controller_sensitivity: float,