Change sprite of guards while strafing around them

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>
This commit is contained in:
2026-03-13 19:27:44 +01:00
parent 01d8329969
commit 92f6e23b82
3 changed files with 71 additions and 2 deletions

View File

@@ -9,6 +9,21 @@ class DifficultyScreen extends StatelessWidget {
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: Colors.black,
floatingActionButton: FloatingActionButton(
backgroundColor: Colors.red[900],
onPressed: () {
Navigator.of(context).push(
MaterialPageRoute(
builder: (_) => const WolfRenderer(
difficulty: Difficulty.bringEmOn,
// isDemo: true,
showSpriteGallery: true,
),
),
);
},
child: const Icon(Icons.bug_report, color: Colors.white),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,