Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vixenka/bevy_dev
Dev tools for Bevy Engine
https://github.com/vixenka/bevy_dev
bevy developer-tools devtools game-development
Last synced: about 1 month ago
JSON representation
Dev tools for Bevy Engine
- Host: GitHub
- URL: https://github.com/vixenka/bevy_dev
- Owner: Vixenka
- License: mit
- Created: 2024-01-02T20:04:59.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2024-04-24T11:22:35.000Z (7 months ago)
- Last Synced: 2024-08-11T09:02:42.034Z (3 months ago)
- Topics: bevy, developer-tools, devtools, game-development
- Language: Rust
- Homepage: https://crates.io/crates/bevy_dev
- Size: 646 KB
- Stars: 20
- Watchers: 2
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# bevy_dev
[![crates.io](https://img.shields.io/crates/v/bevy_dev)](https://crates.io/crates/bevy_dev)
[![docs.rs](https://docs.rs/bevy_dev/badge.svg)](https://docs.rs/bevy_dev)Dev tools for [Bevy Engine](https://bevyengine.org/). For faster prototyping.
[![Showcase](/images/debug_camera/showcase.webp)](https://github.com/Vixenka/bevy_dev/assets/44348304/073d635c-3d58-4c36-8e01-8a8686f5060b)
### Features
- [x] [Debug camera](/docs/features/debug_camera.md) - tool for getting another perspective to the scene, also known as fly camera.
- [x] [Prototype material](/docs/features/prototype_material.md) - simple, metrically correct, PBR compatible and randomly painted mesh for better differentiation of prototype objects.## Usage
Add `DevPlugins` to Bevy's App.
```rust
use bevy::prelude::*;
use bevy_dev::prelude::*;#[bevy_main]
fn main() {
App::new()
.add_plugins((DefaultPlugins, DevPlugins))
.run();
}
```## Bevy compability
| bevy | bevy_dev |
|--------|---------------|
| 0.13.2 | 0.3 - 0.3.1 |
| 0.13.0 | 0.2 |
| 0.12.1 | 0.1 - 0.1.1 |Read more in the [changelog](/CHANGELOG.md).
## License
bevy_dev is licensed under the [MIT](/LICENSE) license.