arewegameyet VS awesome-bevy

Compare arewegameyet vs awesome-bevy and see what are their differences.

arewegameyet

The repository for https://arewegameyet.rs (by rust-gamedev)

awesome-bevy

A collection of Bevy assets, plugins, learning resources, and apps made by the community (by bevyengine)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
arewegameyet awesome-bevy
99 30
674 928
0.7% 2.2%
7.0 8.6
10 days ago 6 days ago
SCSS
Creative Commons Attribution 4.0 -
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

arewegameyet

Posts with mentions or reviews of arewegameyet. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-07-22.
  • Is rust suitable for multiplayer games?
    1 project | /r/gamedev | 10 Dec 2023
    arewegameyet
  • Someday, maybe, we will be game. I hope.
    1 project | /r/rust_gamedev | 21 Aug 2023
    "While the ecosystem is still very young, you can find enough libraries and game engines to sink your teeth into doing some slightly experimental gamedev."
  • Egregoria is a city simulation with high granularity
    6 projects | news.ycombinator.com | 22 Jul 2023
    I think Rust for games has come really far. I will cite https://arewegameyet.rs/ "Almost. We have the blocks, bring your own glue.".

    All the blocks are there and the language is really well suited to games.

    On top of my head:

    The pros:

    - The crate ecosystem and the package manager makes it really easy to integrate any useful component such as pathfinding, spatial partitioning, graphics backend, audio system.. Most crates take a lot of effort to be cross-platform so I can develop on linux and not spend too much time debugging windows releases.

    - The strong typing and algebraic data types makes expressing the game state very pleasant. I also found I was able to develop a very big game without too many bugs even though I don't write many tests.

    - Ahead of time compilation + LLVM guarantees you won't have to optimise for weird things around a virtual machine. Rust gives you more control to optimise hot loops as you can go low-level.

    - I find wgpu to be the perfect balance between ergonomics and power compared to Vulkan. OpenGL support through wgpu is also a nice addition for lower end devices.

    - The Rust community is very helpful, you can often talk directly to crate maintainers

    The cons:

    - Compilation times, when compared to JITed languages such as C# can be very painful. It can be alleviated by buying a 3950X but I still often get 10-30s iteration times.

    - The static nature of Rust means you often need a dynamism layer above to tweak stuff that can be awkward to manage. I made inline_tweak for this purpose but it's really far from how easy Unity makes it. https://github.com/Uriopass/inline_tweak

    - Since Rust feels very ergonomic, you are tempted to write almost all game logic within it, so mod support feels very backwards to implement as you cannot really tweak "everything" like in Unity games. Thankfully "Systems" game like Factorio or Egregoria can be theoretically split into the "simulation" and the "entities" so mod can still have a great impact. Factorio is built in C++ so has the same problematic. Their Lua API surface is quite insane to be able to hook into everything. https://lua-api.factorio.com/latest/

    Now, I have to talk about Bevy: https://bevyengine.org/. It did not exist when I started but it is a revolution in the Rust gamedev space. It is a very powerful 100% Rust game engine that makes you write game code in Rust too. It has incredible energy behind it and I feel like if I'd used Bevy from the start I wouldn't have had to develop many core engine systems. Its modular design is also incredibly pleasant as you can just replace any part you don't like with your own.

  • What is Rust's potential in game development?
    12 projects | /r/rust | 15 Jun 2023
  • Struggling to find practical uses for Rust
    2 projects | /r/rust | 26 May 2023
    For practical uses of Rust? Whatever you want to program. People use Rust for game development, GUIs, web dev, and more. Anything where abstraction, speed, concurrency, memory safety, etc. are important, Rust will probably be a good fit.
  • Latest Zen Kernel......
    5 projects | /r/linuxmemes | 26 May 2023
    Are we game yet? "Almost. We have the blocks, bring your own glue"
  • Really frustrated. [Warning: Bit of a negative rant]
    6 projects | /r/rust_gamedev | 26 Apr 2023
    Not seeing anything else that's close to photo realistic. I'm hitting the tough bugs first all too often. More than half my time has been spent on ecosystem problems.
  • What are some stuff that Rust isn't good at?
    14 projects | /r/rust | 16 Apr 2023
    I also know of https://arewegameyet.rs/
  • Chrome ships WebGPU, a sort-of successor to WebGL. How soon do you see this being adopted by the game dev community?
    4 projects | /r/gamedev | 10 Apr 2023
    Yes — and in fact, Firefox's implementation has been the go-to graphics API for folks trying to make Rust gamedev happen for a long time now. Bevy Engine's renderer is built on it, for example.
  • Are We <Thing> Yet?
    2 projects | news.ycombinator.com | 10 Apr 2023
    They're all/mostly websites about the state of the Rust language ecosystem. For example, can you write games in Rust (https://arewegameyet.rs/) or what's the state of the async (https://areweasyncyet.rs/)

awesome-bevy

Posts with mentions or reviews of awesome-bevy. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-11-04.
  • Bevy 0.12
    7 projects | news.ycombinator.com | 4 Nov 2023
    Among Bevy contributors (including myself) there is a general hesitance to invest too much time in official learning material that will be obsolete by the next release. Bevy's APIs are beginning to stabilize ... and the appetite (both from users and from Bevy devs) for official material is increasing. The time is coming (soon)!

    While you wait, there are a sizeable number of tutorials on YouTube, and we have learning material linked in https://bevyengine.org/assets/#learning as well.

  • Which project do you think is the best at showing what Bevy is capable of?
    2 projects | /r/bevy | 24 Mar 2023
    User code is the same as engine code. It's all Rust. Consequently, Bevy already has a surprisingly rich ecosystem
  • Bevy 0.10
    9 projects | /r/rust | 6 Mar 2023
    I've summarized a lot of my thoughts in this blog post, but in short: * "The Developer's Engine": most engines are built using multiple languages, with significant abstraction between "user code" and "engine code". Bevy is built with a consistent stack and data model (see the blog post I linked to for details). If you "go to definition" on a Bevy app symbol in your IDE, the underlying engine code will look the same as your app code. You can also swap out basically everything. We have a vibrant plugin ecosystem as a result. These blurred lines also make it way easier for "Bevy app developers" to make direct contributions to the engine. Bevy App developers are Bevy Engine developers, they just don't know it yet. The new Bevy renderer (in 0.6) was also built with this principle in mind. It exposes low, mid, and high level renderer apis in a way that makes it easy to "insert yourself" into the engine. * Fully embraces ECS: No popular engines are currently all-in on ECS (either they have no official support ... or they are half-in half-out). I reflect on some of the benefits we've enjoyed thanks to Bevy ECS in the blog post I linked to. Note that there is a lot of pro and anti ECS hype. Don't just blindly follow dogma and hype trains. ECS isn't one thing and Bevy ECS intentionally blurs the lines between paradigms. * Fully Free and Open Source With No Contracts: Of the popular engines, only Godot is a competitor in this space.
  • Katharos tech?!
    4 projects | /r/bevy | 16 Nov 2022
  • I'm switching from a 2D engine to a 3D one, what should I expect from Bevy?
    2 projects | /r/bevy | 15 Nov 2022
    I would recommend going to bevy's blog post(https://bevyengine.org/news/) since the update lists are the only convenient way I know it find out what features bevy actually has implemented directly. then go over to bevy assets(https://bevyengine.org/assets/) and you can see the community-made plugins to get an idea of the sorts of things people are making available to you. and finally, as a bit of self-promo, I have a youtube series called bevy basics where I got over how bevy does things, like the ECS and systems, moving into more direct use thing like getting user input you can fine it all here www.youtube.com/playlist?list=PL6uRoaCCw7GN_lJxpKS3j-KXuThRiSXc6
  • Bevy 0.9: data oriented game engine built in Rust
    4 projects | news.ycombinator.com | 12 Nov 2022
    I've summarized a lot of my thoughts in this blog post: https://bevyengine.org/news/bevys-first-birthday/#things-i-m...

    But in short (slight copy-paste of my generic Bevy pitch):

    The Developer's Engine: most engines are built using multiple languages, with significant abstraction between "user code" and "engine code". Bevy is built with a consistent stack and data model (see the blog post I linked to for details). If you "go to definition" on a Bevy app symbol in your IDE, the underlying engine code will look the same as your app code. You can also swap out basically everything. We have a vibrant plugin ecosystem (https://bevyengine.org/assets) as a result. These blurred lines also make it _way_ easier for "Bevy app developers" to make direct contributions to the engine. Bevy App developers _are_ Bevy Engine developers, they just don't know it yet. The new Bevy renderer (in 0.6) was also built with this principle in mind. It exposes low, mid, and high level renderer apis in a way that makes it easy to "insert yourself" into the engine.

    Fully embraces ECS: No popular engines are currently all-in on ECS (either they have no official support ... or they are half-in half-out). I reflect on some of the benefits we've enjoyed thanks to Bevy ECS in the blog post I linked to. Note that there is _a lot_ of pro _and_ anti ECS hype. Don't just blindly follow dogma and hype trains. ECS isn't one thing and Bevy ECS intentionally blurs the lines between paradigms.

    We can't currently compete with the "big engines" on features, but we are adding features at a rapid (and growing) pace. Bevy was released about a year and a half ago. Most popular engines have been in development for almost 20 years (Godot since 2007, Unity since 2005, Unreal since 1998), so we have plenty of "time" from my perspective.

    I'm a huge fan of Godot and used it to build my game High Hat over the course of about 4 years. I also contributed to it every once and awhile. When I was initially building Bevy, Godot's design decisions were always at the top of my mind (and they still are to this day). I love they way they do scenes (and our system draws inspiration from it). We also plan on borrowing their "dogfooding" approach to editor building (the Bevy Editor will be a normal Bevy App).

    6 projects | /r/gamedev | 12 Nov 2022
    Bevy still has functionality gaps in most areas. And we still warn developers about stability and missing features in our learning material. But many people are successfully making games with Bevy at this point. Some companies are already successfully building on Bevy for commercial projects. Our modular "everything is a Rust plugin" approach means that most gaps can be filled with 3rd party plugins, and we already have a large ecosystem of people doing that: https://bevyengine.org/assets/.
  • Godot 4 Beta 1
    4 projects | news.ycombinator.com | 15 Sep 2022
    One of the benefits of 4.0 is also the modularity of it with GDExtension. The major parts of the engine (including the physics) can be swapped with replacements without the need to recompile the entire engine. I'd usually say that is a long shot for community run projects, but even Bevy engine has community made extensions for separate physics engines.

    https://bevyengine.org/assets/#physics

    Forgetting about extensions, though, I see your point and almost agree, but Godot has shown that they will put in the work to improve their project, even if that means removing features like they did with visual scripting. Their physics engine will definitely be rough at first, but based on their past work, I believe they are willing and able to maintain it.

  • Bevy 0.8
    19 projects | /r/rust | 30 Jul 2022
    Lots of good community-developed networking plugins over in Bevy Assets
  • 3D Chess Tutorial from Bevy 0.4.0 to 0.7.0
    4 projects | /r/bevy | 20 Jun 2022
    Hi all! In the Assets tab from the Bevy official website, there is a "Making a Chess Clone in 3D" tutorial to learn Bevy written by guimcaballero. Unfortunately it was written in Bevy 0.4.0 and using bevy_mod_picking 0.3.1.

What are some alternatives?

When comparing arewegameyet and awesome-bevy you can also consider the following projects:

Godot - Godot Engine – Multi-platform 2D and 3D game engine

egui - egui: an easy-to-use immediate mode GUI in Rust that runs on both web and native

RG3D - 3D and 2D game engine written in Rust [Moved to: https://github.com/FyroxEngine/Fyrox]

bevy - A refreshingly simple data-driven game engine built in Rust

rust-rdkafka - A fully asynchronous, futures-based Kafka client library for Rust based on librdkafka

wgpu-rs - Rust bindings to wgpu native library

GameDev-Resources - :video_game: :game_die: A wonderful list of Game Development resources.

bevy-kajiya - A plugin to use the kajiya renderer with bevy

detonator - 2D game engine and editor 💥💣

bevy-cheatbook - Unofficial Reference Book for the Bevy Game Engine

rust-analyzer - A Rust compiler front-end for IDEs [Moved to: https://github.com/rust-lang/rust-analyzer]