bevy-inspector-egui VS bevy_ecs_tilemap

Compare bevy-inspector-egui vs bevy_ecs_tilemap and see what are their differences.

bevy-inspector-egui

Inspector plugin for the bevy game engine (by jakobhellermann)

bevy_ecs_tilemap

A tilemap rendering crate for bevy which is more ECS friendly. (by StarArawn)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
bevy-inspector-egui bevy_ecs_tilemap
11 5
1,032 805
- -
8.5 8.4
16 days ago 13 days ago
Rust Rust
Apache License 2.0 MIT License
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.

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?
    2 projects | /r/gamedev | 21 Apr 2023
    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?
    3 projects | /r/bevy | 7 Apr 2023
    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
    5 projects | /r/gamedev | 6 Mar 2023
    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
    3 projects | /r/gamedev | 18 Jan 2023
    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?
    1 project | /r/bevy | 6 Jan 2023
    Here is the example
  • My bevy asteroids clone is looking good.
    1 project | /r/bevy | 4 Oct 2022
  • My First Impressions after Bevy Jam #2
    3 projects | /r/bevy | 30 Aug 2022
    Bevy-inspector-egui is a most have, I think this game would not have been possible without, abuse it,
  • Game engines for programmers
    5 projects | /r/gamedev | 10 Jun 2022
    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++?
    6 projects | /r/gamedev | 11 May 2022
    There are also some super interesting experiments with hot reloading, both with code and on the fly value modification.
  • Bevy 0.7
    16 projects | /r/rust | 15 Apr 2022
    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.

bevy_ecs_tilemap

Posts with mentions or reviews of bevy_ecs_tilemap. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-04-15.
  • How to draw a tilemap properly?
    1 project | /r/bevy | 30 Mar 2023
    https://github.com/StarArawn/bevy_ecs_tilemap Consider thumbing through this code for ideas. Generally looks fine assuming you need to individually color tiles at some point in the future.
  • Why global consts are so widely used?
    1 project | /r/rust | 5 Dec 2022
  • Bevy 0.7
    16 projects | /r/rust | 15 Apr 2022
    Yeah built in texture atlas requires that you manually manage the atlas and doesn't support swapping out textures on the fly (although I'm willing to consider adding support for that). I'm pretty sure the bevy_ecs_tilemap plugin uses the "texture array" approach to texture atlases. Its very possible that it will work for your usecase (or provide an example of how to do that in bevy).
  • Need a technology choice advice, please help.
    3 projects | /r/rust | 9 Apr 2022
    I can only speak to Bevy from firsthand use and you won't find support for any of your bullets out of the box, but some of it is available in the surrounding package ecosystem. I liked working with bevy_ecs_tilemap. I highly recommend the Cheatbook as well.
  • Tile Map with ECS: Should I have an entity per tile?
    2 projects | /r/gamedev | 31 May 2021
    you can check out https://github.com/StarArawn/bevy_ecs_tilemap,

What are some alternatives?

When comparing bevy-inspector-egui and bevy_ecs_tilemap you can also consider the following projects:

bevy_editor_pls - In-App editor tools for bevy applications

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

imgui-inspect - An inspector UI using imgui in Rust

rfcs - Suggest changes to Bevy and view accepted designs

egui_inspect

awesome-bevy - A collection of Bevy assets, plugins, learning resources, and apps made by the community

egui-inspect - Trait and derive macro to easily inspect types with egui

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!`

kayak_ui

MonoGame - One framework for creating powerful cross-platform games.

bevy_mod_scripting - Bevy Scripting Plugin