Bevy Retro Camera

Crates.io Docs.rs lines of code

( Screenshot of Bounty Bros. game made with Bevy Retrograde and Skip'n Go )

bounty bros game screenshot

Bevy Retro camera is a 2D, pixel-perfect camera for Bevy. It is a continuation fork of the RetroCameraBundle from Bevy Retrograde.

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 like this fn setup(mut commands: Commands) { commands.spawnbundle(RetroCameraBundle::fixedheight(240.0)); } ```

Compatibility matrix

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