Skip to content

Latest commit

 

History

History
47 lines (32 loc) · 1.19 KB

File metadata and controls

47 lines (32 loc) · 1.19 KB

Bevy Starter

This repo is a minimal starter for Bevy 0.18

Inspiration

Building

You can build your game

cargo run

If you want the extra dev features then you can toggle them:

cargo run --features dev

Depending on if you are building a 2D or 3D game you can set your Bevy features accordingly in Cargo.toml to reduce compile times. For 2D games you can use:

bevy = { version = "0.18", default-features = false, features = ["2d"] }

See Cargo Feature Collections for more information.

Features

  • Cargo configured according to Bevy guide with build optimizations
  • Avian physics
  • Generic set of starting plugins with your games logic inside GamePlugin
  • TLDR.md for passing to tools like aider and others that helps them get more recent context from Bevy

Missing

  • Deployment