bevy-test
bevy-test copied to clipboard
A quick and dirty Space Invaders type game in Bevy, with attached tutorial.
when building I get the following error: ```cargo Compiling gfx-backend-gl v0.7.1 error[E0597]: `desc_set` does not live long enough --> /home/joost/.cargo/registry/src/github.com-1ecc6299db9ec823/wgpu-core-0.7.1/src/device/mod.rs:1529:26 | 1516 | let mut desc_set = desc_sets.pop().unwrap(); | ------------...
I really enjoyed the article! Straight after Hand-on Rust, it was very easy to pick up. I ended up with an infinite firing space ship, I missed the `.just_pressed` for...
In the medium article, the prose does not mention the following line in the `setup()` function: ```rust .insert(Player { delta_x: 0.0 }); ```