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
.
toml
[dependencies]
bevy = { version = "0.10", default_features = false }
bevy_pixels = "0.9"
Add PixelsPlugin
to your Bevy project.
```rust use bevy::prelude::; use bevy_pixels::prelude::;
fn main() { App::new() .addplugins(DefaultPlugins) .addplugin(PixelsPlugin::default()) .addsystem(draw.inset(PixelsSet::Draw)) .run(); } ```
Use PixelsWrapper
in your systems.
``rust
fn draw(mut wrapper_query: Query<&mut PixelsWrapper>) {
// Query the
PixelsWrappercomponent that owns an instance of
Pixels` for the given window.
let Ok(mut wrapper) = wrapperquery.getsingle_mut() else { return };
// Get a mutable slice for the pixel buffer.
let frame: &mut [u8] = wrapper.pixels.frame_mut();
// Fill frame with pixel data.
// ...
} ```
| bevy_pixels | bevy | pixels | | ----------- | ----- | ------ | | 0.1 | 0.5 | 0.3 | | 0.2 | 0.5 | 0.8 | | 0.3-0.4 | 0.6 | 0.9 | | 0.5 | 0.7 | 0.9 | | 0.6 | 0.8 | 0.10 | | 0.7 | 0.9 | 0.10 | | 0.8 | 0.9 | 0.11 | | 0.9 | 0.10 | 0.12 |
This example is based off minimal-winit
example from the pixels project.
sh
cargo run --release --example example_name
Install dependencies.
sh
rustup target add wasm32-unknown-unknown
cargo install wasm-bindgen-cli just miniserve
Build and serve example with just. See Justfile
for more details.
sh
just serve-web example_name
Open http://localhost:8080/ in your web browser to run the example.
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you shall be dual licensed as above, without any additional terms or conditions.