Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 606 Bytes

setting_up.md

File metadata and controls

29 lines (19 loc) · 606 Bytes

Setting Up

Initialize a Cargo project.

cargo new my_project

where my_project is the name of our project.

Add Bevy to the project dependencies.

cd my_project
cargo add bevy

You should see the dependency in the end of Cargo.toml file.

[dependencies]
bevy = "0.12.1"

Now, you are ready to exploit the power of Bevy.

➡️ Next: A Bevy Project That Does Nothing

📘 Back: Table of contents