fix(client): address PR #54 round 2 — stale comments, D-076 test, GROUND_FLOOR const

Remove stale smoothing re-enable comments from main.gd (Hoshe #1).
Add DIALOGUE_MAX_WIDTH=640 regression test (Hoshe #2).
Extract GROUND_FLOOR const in tile_renderer (Tyre #3).
Clean up entity_renderer migration comment (Hoshe #3).

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-21 14:42:25 +01:00
co-authored by Claude Opus 4.6
parent c347f28cbd
commit 78c8bb97de
4 changed files with 17 additions and 6 deletions
@@ -25,6 +25,16 @@ func after_test() -> void:
_instance = null
# -------------------------------------------------------------------------
# D-076: Layout constants
# -------------------------------------------------------------------------
func test_dialogue_max_width_matches_d076() -> void:
# D-076 (OQ-29): DIALOGUE_MAX_WIDTH must be 640px. Regression guard — was
# incorrectly set to 1200 before review round 1.
assert_that(Constants.DIALOGUE_MAX_WIDTH).is_equal(640)
# -------------------------------------------------------------------------
# D-049: Z-layer scene hierarchy
# -------------------------------------------------------------------------