bevy-inspector-egui
Inspector plugin for the bevy game engine (by jakobhellermann)
belly
Define the Bevy UI tree with `eml!`, style it using a very-css-like `ess` syntax and relate data data with `bind!` and `connect!` (by jkb0o)
bevy-inspector-egui | belly | |
---|---|---|
11 | 2 | |
1,327 | 417 | |
3.0% | 1.7% | |
8.7 | 6.8 | |
13 days ago | 11 months ago | |
Rust | Rust | |
Apache License 2.0 | Apache License 2.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.
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.
bevy-inspector-egui
Posts with mentions or reviews of bevy-inspector-egui.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2023-04-21.
-
High Contrast Game Engines / Game Creator Tools?
With egui and some bevy related plugins you can get pretty close to a game engine editor, obviously missing a lot of things: https://github.com/jakobhellermann/bevy-inspector-egui
-
Is bevy a good choice for a mainly UI based game?
Like /u/tarkin25 already mentioned "egui" can be integrated into bevy. Bevy Inspector Egui is a plugin that not only provides a helpful way to inspect different entities in the world, but also re-exports "egui" for use.
-
Bevy 0.10: data oriented game engine built in Rust
Firstly, Bevy has an internal crate called bevy_reflect, and it can handle most of the things you would usually use reflection for. For example, https://github.com/jakobhellermann/bevy-inspector-egui exists which uses Bevy's internal reflect derive to make the values available via an egui-based UI. Changing simple values (like an f32, or a boolean) can be done at runtime, and if I remember correctly all you actually need to do is to add the plugin. Taking a look at the README https://github.com/bevyengine/bevy/tree/main/crates/bevy_reflect you can "patch" types with new values, iterate over struct fields, serialize + deserialize, and generally do stuff like that.
-
Scaling Bevy Development
Yeah runtime editing is definitely a weakness at this point. An editor is definitely a part of our plans though! We'll likely break ground on it early this year. In the meantime https://github.com/jakobhellermann/bevy-inspector-egui provides some nice runtime editing / inspecting / editor-like tools.
-
Align tabs in bevy-inspector-egui?
Here is the example
- My bevy asteroids clone is looking good.
-
My First Impressions after Bevy Jam #2
Bevy-inspector-egui is a most have, I think this game would not have been possible without, abuse it,
-
Game engines for programmers
What do you miss from scriptable objects that you don't get from a class that serializes to JSON? Global access (read only access shouldn't prevent this right)? The inspector (looks like egui can help there?
-
Why almost all Game Engines and Games are wrote on C++?
There are also some super interesting experiments with hot reloading, both with code and on the fly value modification.
-
Bevy 0.7
The one in bevy is nowhere near the requirements of a desktop application-level editor. I don't plan to involve bevy there at all. egui looks quite usable for low-level debug UI, though, especially with this crate.
belly
Posts with mentions or reviews of belly.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2023-07-03.
-
Looking for this. html + css rendering through wgpu.
Others have already mentioned inlyne and blitz, however given that you're interested in combining web UI with game/wgpu rendering you may be more interested in bevy_ui (and the higher level APIs like bevy_ui_dsl and belly that sit on top of this). Bevy UI is working on a HTML model and is specifically designed to integrate with Bevy's main game renderer and other infrastructure. It's worth noting that a 0.11 release of Bevy of due in next few days, and that UI is going to be a strong focus of the 0.12 release cycle: which should lead to significant development of bevy_ui, and either a doubling down on the "HTML-like UI" approach or a pivot to a new approach.
-
Is bevy a good choice for a mainly UI based game?
These two both provide ways of expressing UI in a more HTMLish style.Kayak UI (0.9 support)Belly (0.10 support)
What are some alternatives?
When comparing bevy-inspector-egui and belly you can also consider the following projects:
bevy_editor_pls - In-App editor tools for bevy applications
inlyne - Introducing Inlyne, a GPU powered yet browserless tool to help you quickly view markdown files in the blink of an eye.
egui_inspect
kayak_ui
imgui-inspect - An inspector UI using imgui in Rust
bevy_ui_dsl