From 55486f6d1912ffb1eaf5251709033d703cc3f005 Mon Sep 17 00:00:00 2001 From: David Malinge Date: Thu, 22 Apr 2021 12:09:36 +0000 Subject: [PATCH 1/2] Add a different nbody simulation + fix a typo from previous commit which moved the alternative game of life version. --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7bb6b273..f621d118 100644 --- a/README.md +++ b/README.md @@ -107,6 +107,7 @@ These translations are unofficial, unverified, and potentially out of date. ## Games * [bevy_nbody](https://github.com/thallada/bevy-nbody): An N-body simulation in Rust + * Alternative: [bevy-nbody](https://github.com/WhoisDavid/bevy-nbody) - 3D simulation of the planets of the Solar System. * [flock-rs](https://github.com/JohnPeel/flock-rs): An example of steering and flocking behaviors * [bevy_pong](https://github.com/SuperiorJT/bevy_pong): It's Pong! Based on the "breakout" bevy example * [bevy-tetris](https://github.com/8bit-pudding/bevy-tetris): It's Tetris! @@ -123,9 +124,9 @@ These translations are unofficial, unverified, and potentially out of date. * [Keep Moving and Nobody Burns](https://github.com/mockersf/kmanb): A bomberman against time (made for Ludum Dare 47) * [SiO2](https://github.com/dmitriy-shmilo/sio2): A simple powder toy clone * [Robbo](https://github.com/mrk-its/bevy-robbo): Bevy port of great 8-bit Atari game, working native and in the browser -* [DJMcNab/life-rs](https://github.com/DJMcNab/life-rs): Bevy reproduction of the rules of [Conway's Game of Life](https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life) on a randomised board. +* [DJMcNab/life-rs](https://github.com/DJMcNab/life-rs): Bevy reproduction of the rules of [Conway's Game of Life](https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life) on a randomised board. + * Alternative implementation: [Byteron/life-rs](https://github.com/Byteron/life-rs). * [Zenith](https://github.com/rsaihe/zenith): A space-themed shoot 'em up game - Alternative implementation: [Byteron/life-rs](https://github.com/Byteron/life-rs). * [arugio](https://github.com/ostwilkens/arugio): Prototype multiplayer server-authoritative networked "game" with Browser (WebGL) client and native server * [colonize](https://github.com/indiv0/colonize): A Dwarf Fortress/Rimworld-like game written in Rust. * [oicana](https://github.com/NiklasEi/oicana): A tower defense game with puzzle aspects From 40bee94b7109a052cd86b08ae0953d1b6a66e616 Mon Sep 17 00:00:00 2001 From: David Malinge Date: Thu, 22 Apr 2021 19:40:32 +0000 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f621d118..da28ec36 100644 --- a/README.md +++ b/README.md @@ -107,7 +107,6 @@ These translations are unofficial, unverified, and potentially out of date. ## Games * [bevy_nbody](https://github.com/thallada/bevy-nbody): An N-body simulation in Rust - * Alternative: [bevy-nbody](https://github.com/WhoisDavid/bevy-nbody) - 3D simulation of the planets of the Solar System. * [flock-rs](https://github.com/JohnPeel/flock-rs): An example of steering and flocking behaviors * [bevy_pong](https://github.com/SuperiorJT/bevy_pong): It's Pong! Based on the "breakout" bevy example * [bevy-tetris](https://github.com/8bit-pudding/bevy-tetris): It's Tetris! @@ -131,6 +130,7 @@ These translations are unofficial, unverified, and potentially out of date. * [colonize](https://github.com/indiv0/colonize): A Dwarf Fortress/Rimworld-like game written in Rust. * [oicana](https://github.com/NiklasEi/oicana): A tower defense game with puzzle aspects * [taipo](https://github.com/rparrett/taipo): A 2d typing/tower defense game for the browser. +* [bevy-nbody](https://github.com/WhoisDavid/bevy-nbody) - 3d n-body simulation of the planets of the Solar System. ## Apps * [bevy-calc](https://github.com/PravinKumar95/simple-calc): A simple calculator