From 9f8b4053f66c5e7d59c4a7215a04f0b47b8b8e10 Mon Sep 17 00:00:00 2001 From: Elijah Voigt Date: Thu, 24 Jul 2025 16:05:47 -0700 Subject: [PATCH] Ladies and gentlemen... we have a bouncing bird --- src/bin/flappy/main.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/bin/flappy/main.rs b/src/bin/flappy/main.rs index 7580d23..378f1ef 100644 --- a/src/bin/flappy/main.rs +++ b/src/bin/flappy/main.rs @@ -41,6 +41,10 @@ fn init_bird( commands.spawn((name, mesh, material, mass, t, Bird, force)); } +// TODO: Create floor (and ceiling?) +// Q: Move bird + camera or move world around bird & camera? +// TODO: Obstacles + fn flap( keyboard: Res>, mut bird: Query<(&Transform, &mut ExternalForce), With>,