bevy/README.md

99 lines
5.8 KiB
Markdown
Raw Normal View History

2020-05-01 20:12:47 +00:00
# [![Bevy](assets/branding/bevy_logo_light_small.svg)](https://bevyengine.org)
2020-01-22 04:00:24 +00:00
[![Crates.io](https://img.shields.io/crates/v/bevy.svg)](https://crates.io/crates/bevy)
2020-08-11 19:10:32 +00:00
[![license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/bevyengine/bevy/blob/master/LICENSE)
2020-01-22 04:00:24 +00:00
[![Crates.io](https://img.shields.io/crates/d/bevy.svg)](https://crates.io/crates/bevy)
[![Rust](https://github.com/bevyengine/bevy/workflows/CI/badge.svg)](https://github.com/bevyengine/bevy/actions)
![iOS cron CI](https://github.com/bevyengine/bevy/workflows/iOS%20cron%20CI/badge.svg)
[![Discord](https://img.shields.io/discord/691052431525675048.svg?label=&logo=discord&logoColor=ffffff&color=7389D8&labelColor=6A7EC2)](https://discord.gg/gMUk5Ph)
2020-01-22 04:00:24 +00:00
## What is Bevy?
2019-12-10 07:29:52 +00:00
2020-08-09 23:33:32 +00:00
Bevy is a refreshingly simple data-driven game engine built in Rust. It is free and open-source forever!
2019-12-10 07:29:52 +00:00
2020-01-22 04:13:08 +00:00
## WARNING
2020-01-22 04:00:24 +00:00
Bevy is still in the _very_ early stages of development. APIs can and will change (now is the time to make suggestions!). Important features are missing. Documentation is sparse. Please don't build any serious projects in Bevy unless you are prepared to be broken by API changes constantly.
2020-01-22 04:00:24 +00:00
2020-01-21 11:11:38 +00:00
## Design Goals
* **Capable**: Offer a complete 2D and 3D feature set
2020-07-23 02:07:28 +00:00
* **Simple**: Easy for newbies to pick up, but infinitely flexible for power users
* **Data Focused**: Data-oriented architecture using the Entity Component System paradigm
2020-08-06 20:58:13 +00:00
* **Modular**: Use only what you need. Replace what you don't like
2020-07-23 02:07:28 +00:00
* **Fast**: App logic should run quickly, and when possible, in parallel
* **Productive**: Changes should compile quickly ... waiting isn't fun
2020-01-21 11:11:38 +00:00
## About
2020-01-21 11:11:38 +00:00
2020-08-05 02:57:55 +00:00
* **[Features](https://bevyengine.org):** A quick overview of Bevy's features.
* **[Roadmap](https://github.com/bevyengine/bevy/projects/1):** The Bevy team's development plan.
* **[Introducing Bevy](https://bevyengine.org/news/introducing-bevy/)**: A blog post covering some of Bevy's features
2020-01-21 11:11:38 +00:00
## Docs
2020-02-22 23:01:11 +00:00
* **[The Bevy Book](https://bevyengine.org/learn/book/introduction):** Bevy's official documentation. The best place to start learning Bevy.
* **[Bevy Rust API Docs](https://docs.rs/bevy):** Bevy's Rust API docs, which are automatically generated from the doc comments in this repo.
* **[Community-Made Learning Resources](https://github.com/bevyengine/awesome-bevy#learning)**: Tutorials, documentation, and examples made by the Bevy community.
2020-02-22 23:01:11 +00:00
2020-08-10 22:46:48 +00:00
## Community
Before contributing or participating in discussions with the community, you should familiarize yourself with our **[Code of Conduct](https://github.com/bevyengine/bevy/blob/master/CODE_OF_CONDUCT.md)** and
**[How to Contribute](https://bevyengine.org/learn/book/contributing/code/)**
2020-08-21 22:06:50 +00:00
* **[Discord](https://discord.gg/gMUk5Ph):** Bevy's official discord server.
* **[Reddit](https://reddit.com/r/bevy):** Bevy's official subreddit.
* **[Stack Overflow](https://stackoverflow.com/questions/tagged/bevy):** Questions tagged Bevy on Stack Overflow.
* **[Awesome Bevy](https://github.com/bevyengine/awesome-bevy):** A collection of awesome Bevy projects.
2020-08-10 22:46:48 +00:00
## Getting Started
2020-01-21 11:11:38 +00:00
We recommend checking out [The Bevy Book](https://bevyengine.org/learn/book/introduction) for a full tutorial.
Follow the [Setup guide](https://bevyengine.org/learn/book/getting-started/setup/) to ensure your development environment is set up correctly.
Once set up, you can quickly try out the [examples](/examples) by cloning this repo and running the following command:
```sh
2020-08-09 23:33:32 +00:00
# Runs the "breakout" example
cargo run --example breakout
2020-01-21 11:11:38 +00:00
```
### Fast Compiles
2020-08-06 20:58:13 +00:00
Bevy can be built just fine using default configuration on stable Rust. However for really fast iterative compiles, you should enable the "fast compiles" setup by [following the instructions here](http://bevyengine.org/learn/book/getting-started/setup/).
2020-01-21 11:11:38 +00:00
2020-08-21 19:50:05 +00:00
## Focus Areas
Bevy has the following [Focus Areas](https://github.com/bevyengine/bevy/labels/focus-area). We are currently focusing our development efforts in these areas, and they will receive priority for Bevy developers' time. If you would like to contribute to Bevy, you are heavily encouraged to join in on these efforts:
2020-08-21 19:50:05 +00:00
### [Editor-Ready UI](https://github.com/bevyengine/bevy/issues/254)
2020-08-21 19:50:05 +00:00
### [PBR / Clustered Forward Rendering](https://github.com/bevyengine/bevy/issues/179)
2020-08-21 19:50:05 +00:00
### [Scenes](https://github.com/bevyengine/bevy/issues/255)
2020-01-21 11:11:38 +00:00
## Libraries Used
Bevy is only possible because of the hard work put into these foundational technologies:
* [wgpu-rs](https://github.com/gfx-rs/wgpu-rs): modern / low-level / cross-platform graphics library inspired by Vulkan
2020-01-21 11:11:38 +00:00
* [glam-rs](https://github.com/bitshifter/glam-rs): a simple and fast 3D math library for games and graphics
* [winit](https://github.com/rust-windowing/winit): cross-platform window creation and management in Rust
2020-02-18 03:31:33 +00:00
* [spirv-reflect](https://github.com/gwihlidal/spirv-reflect-rs): Reflection API in rust for SPIR-V shader byte code
## [Bevy Cargo Features][cargo_features]
This [list][cargo_features] outlines the different cargo features supported by Bevy. These allow you to customize the Bevy feature set for your use-case.
[cargo_features]: docs/cargo_features.md
## [Third Party Plugins][plugin_guidelines]
Plugins are very welcome to extend Bevy's features. [Guidelines][plugin_guidelines] are available to help integration and usage.
[plugin_guidelines]: docs/plugins_guidelines.md
## Thanks and Alternatives
Additionally, we would like to thank the [Amethyst](https://github.com/amethyst/amethyst), [macroquad](https://github.com/not-fl3/macroquad), [coffee](https://github.com/hecrj/coffee), [ggez](https://github.com/ggez/ggez), [rg3d](https://github.com/mrDIMAS/rg3d), and [Piston](https://github.com/PistonDevelopers/piston) projects for providing solid examples of game engine development in Rust. If you are looking for a Rust game engine, it is worth considering all of your options. Each engine has different design goals, and some will likely resonate with you more than others.