docs.rs failed to build bevy_pixels-0.2.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
bevy_pixels-0.15.0
Usage
Add bevy
and bevy_pixels
to Cargo.toml
. Be sure to disable bevy
's render
and bevy_wgpu
features (with default-features = false
) as they will conflict with rendering provided by bevy_pixels
.
[]
= { = "0.5", = false }
= "0.1"
Add PixelsPlugin
to your Bevy project.
use *;
use *;
Use PixelsResource
in your systems.
Bevy and Pixels version mapping
bevy_pixels | bevy | pixels |
---|---|---|
0.1 | 0.5 | 0.3 |
0.2 | 0.5 | 0.8 |
Examples
Hello Bevy Pixels
This example is based off minimal-winit
example from the pixels project.
Todo
- Add more configuration around how rendering is performed.
- Add support for multiple windows.