WIP pushing menu to game engine - improving menu text clarity in ASCII mode

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>
This commit is contained in:
2026-03-18 12:45:04 +01:00
parent e39dfd5da0
commit dc1acb7a2f
9 changed files with 284 additions and 463 deletions

View File

@@ -36,7 +36,7 @@ class _WolfAsciiRendererState extends BaseWolfRendererState<WolfAsciiRenderer> {
}
@override
Color get scaffoldColor => widget.engine.isDifficultySelectionPending
Color get scaffoldColor => widget.engine.difficulty == null
? _colorFromRgb(widget.engine.menuBackgroundRgb)
: const Color.fromARGB(255, 4, 64, 64);

View File

@@ -41,7 +41,7 @@ class _WolfFlutterRendererState
}
@override
Color get scaffoldColor => widget.engine.isDifficultySelectionPending
Color get scaffoldColor => widget.engine.difficulty == null
? _colorFromRgb(widget.engine.menuBackgroundRgb)
: const Color.fromARGB(255, 4, 64, 64);