Bevy Retro camera is a 2D, pixel-perfect camera for Bevy. It does work for Bevy 0.8.
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)); } ```
| Bevy | bevyretrocamera | |------|-------------------| | 0.8 | 1.0 |