Whether it is planned .the exe installer of the Bevy engine? #24862
Replies: 2 comments
|
There isn't one, and there won't be in the usual sense. Bevy isn't a standalone app like Unity or Godot. It's a Rust library you pull into a Cargo project: Then you write your game as Rust code and There is an official editor in the works (bevy_editor_prototypes), but it's early and very much a work in progress. No release, no installer, and no date I'd trust to quote. For now the workflow is code plus Cargo. |
|
Video game developers take a designer’s concepts and build them into a playable game for users. Video game developers, also known as games developers or video game programmers, write code for games for a variety of formats, such as PCs, consoles, web browsers and mobile phones. |
There isn't one, and there won't be in the usual sense. Bevy isn't a standalone app like Unity or Godot. It's a Rust library you pull into a Cargo project:
Then you write your game as Rust code and
cargo runit. The engine ships as a crate, not a downloadable editor you install.There is an official editor in the works (bevy_editor_prototypes), but it's early and very much a work in progress. No release, no installer, and no date I'd trust to quote. For now the workflow is code plus Cargo.