NEO-122: Fix HudRootScroll node path type for get_node_or_null.

pull/161/head
VinPropane 2026-06-07 13:08:02 -04:00
parent 0b3ef92ab6
commit 632a7472de
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ const SIDE_MARGIN := 8.0
const PANEL_WIDTH := 656.0
const HUD_TOP_MARGIN := 8.0
const HUD_ECONOMY_GAP := 12.0
const HUD_ROOT_SCROLL_NAME := &"HudRootScroll"
const HUD_ROOT_SCROLL_NAME := "HudRootScroll"
const PANEL_FILL := Color(0.06, 0.06, 0.1, 0.94)
@onready var _toggle: CheckButton = $HeaderRow/ToggleButton

View File

@ -1,7 +1,7 @@
extends GdUnitTestSuite
## NEO-75: economy HUD collapse toggle shows/hides body scroll container.
## NEO-122: BodyScroll/Body paths match main.tscn.
## NEO-122: BodyScroll/Body paths match main.tscn; HudRootScroll clamp on layout.
const EconomyHudSection := preload("res://scripts/prototype_economy_hud_section.gd")