mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
Update headless example / add feature docs (#502)
* Update headless example * Add missing docs for features
This commit is contained in:
parent
ad7613c674
commit
f5146c1896
2 changed files with 8 additions and 1 deletions
|
@ -18,6 +18,12 @@ GUI support.
|
|||
|
||||
Make use of GPU via [WebGPU](https://gpuweb.github.io/gpuweb/) support.
|
||||
|
||||
### render
|
||||
The render pipeline and all render related plugins.
|
||||
|
||||
### dynamic_plugins
|
||||
Plugins for dynamic loading (libloading)
|
||||
|
||||
### png
|
||||
|
||||
PNG picture format support.
|
||||
|
|
|
@ -6,7 +6,8 @@ use std::time::Duration;
|
|||
// by making your import look like this in your Cargo.toml
|
||||
//
|
||||
// [dependencies]
|
||||
// bevy = { version = "0.1.3", default-features = false, features = ["headless"] }
|
||||
// bevy = { version = "*", default-features = false }
|
||||
// # replace "*" with the most recent version of bevy
|
||||
|
||||
fn main() {
|
||||
// this app runs once
|
||||
|
|
Loading…
Reference in a new issue