Bevy Retro Camera

Crates.io Docs.rs lines of code

( Screenshot of Epic RPG World - Ancient Ruins rendered with Bevy and this crate )

Epic RPG screenshot

Bevy Retro camera is a 2D, pixel-perfect camera for Bevy. It does work for Bevy 0.8.

Features

Quickstart

Create a startup system and use RetroCameraBundle to create a camera. It's also recommended to add the RetroCameraPlugin to disable the blur effect due to Bevy's default rendering configuration.

```rust // Add RetroCameraPlugin to you app + a startup system fn main() { App::new() .addplugin(RetroCameraPlugin) .addstartup_system(setup) }

// Configure your startup system fn setup(mut commands: Commands) { let height: f32 = 240.0; // Viewport size let scale: f32 = 1.0; // Viewport scaling factor commands.spawnbundle(RetroCameraBundle::fixedheight(height, scale)); } ```

Compatibility matrix

| Bevy | bevyretrocamera | |------|-------------------| | 0.8 | 1.0 |

Inspired by