Show HN: A simple shoot 'em up game using Rust Bevy
play.marcoinacio.com
Show HN: A simple shoot 'em up game using Rust Bevy
1–10 of 10 posts
Re: Show HN: A simple shoot 'em up game using Rust Bevy
#2Robotron 2084 !!!
Re: Show HN: A simple shoot 'em up game using Rust Bevy
#3Robotron 2084 !!!
Wow, somehow I wasn't aware of this game, looks quite intensive and inspiring.
Re: Show HN: A simple shoot 'em up game using Rust Bevy
#4Re: Show HN: A simple shoot 'em up game using Rust Bevy
#5Well done! It is fun like Centipede but in Rust :)
Re: Show HN: A simple shoot 'em up game using Rust Bevy
#6Nice and Simple Example. Thank You.
Re: Show HN: A simple shoot 'em up game using Rust Bevy
#728 MB wasm file. Is it possible to reduce the size a bit?
In uncompressed and unobfuscated JS this wouldn't take more than 10KB.
Re: Show HN: A simple shoot 'em up game using Rust Bevy
#828 MB wasm file. Is it possible to reduce the size a bit? In uncompressed and unobfuscated JS this wouldn't take more than 10KB.
Thanks for pointing that out. By coincidence, I was checking this now as I was actually worried about the bandwidth bill from my cloud provider and I wasn't aware that Nginx doesn't compress everything by default.
Simple tweaks:
gzip_types text/plain application/xml application/octet-stream application/javascript audio/ogg;
wasm-opt -Oz out/bevy-shoot-em-up_bg.wasm -o out/bevy-shoot-em-up_bg.wasm
So now , the total download size is 6.4 MB.
Re: Show HN: A simple shoot 'em up game using Rust Bevy
#9Well done! It is fun like Centipede but in Rust :)
thanks very much :)
Re: Show HN: A simple shoot 'em up game using Rust Bevy
#10Robotron 2084 !!!
Wow, somehow I wasn't aware of this game, looks quite intensive and inspiring.
More modern games in the same lineage (connected by Eugene Jarvis) are:
* Smash TV
* Total Carnage
* Nex Machina (which has a documentary following it's creation called "The Name of the Game" currentnly on Netflix)