Bevy Retro camera is a 2D, pixel-perfect camera for Bevy. It is a continuation fork of the RetroCameraBundle from Bevy Retrograde.
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)); } ```
| Bevy | bevyretrocamera | |------|-------------------| | 0.8 | 1.0 |