feat(ui): theme HUD with Orbitron typography

This commit is contained in:
Josh Creek
2026-08-07 22:48:56 +01:00
parent 8bd65290fc
commit 0a7eb0b742
10 changed files with 173 additions and 5 deletions
+1 -1
View File
@@ -73,7 +73,7 @@ func _draw() -> void:
draw_line(Vector2(-half_chord, horizon_y), Vector2(half_chord, horizon_y), LINE_COLOR, 2.0)
# Pitch ladder: rungs every 10 degrees, labelled, scrolling with pitch.
var font := ThemeDB.fallback_font
var font := hud_font()
for ladder_deg: int in [-30, -20, -10, 10, 20, 30]:
var y := horizon_y - ladder_deg * px_per_deg
if absf(y) > radius - 12.0: