{"id":20809549,"url":"https://github.com/celerysaltgames/bevy_retro_camera","last_synced_at":"2026-03-13T01:31:10.360Z","repository":{"id":57855075,"uuid":"528552094","full_name":"celerysaltgames/bevy_retro_camera","owner":"celerysaltgames","description":"Scaled pixel-perfect rendering camera for Bevy","archived":false,"fork":false,"pushed_at":"2022-08-26T08:33:04.000Z","size":439,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-09-01T12:58:43.315Z","etag":null,"topics":["bevy","bevy-plugin","bevy-retrograde","camera","pixel-perfect","rendering"],"latest_commit_sha":null,"homepage":"https://crates.io/crates/bevy_retro_camera","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/celerysaltgames.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-08-24T18:43:20.000Z","updated_at":"2025-01-22T00:01:25.000Z","dependencies_parsed_at":"2022-09-21T03:26:08.291Z","dependency_job_id":null,"html_url":"https://github.com/celerysaltgames/bevy_retro_camera","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/celerysaltgames/bevy_retro_camera","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/celerysaltgames%2Fbevy_retro_camera","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/celerysaltgames%2Fbevy_retro_camera/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/celerysaltgames%2Fbevy_retro_camera/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/celerysaltgames%2Fbevy_retro_camera/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/celerysaltgames","download_url":"https://codeload.github.com/celerysaltgames/bevy_retro_camera/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/celerysaltgames%2Fbevy_retro_camera/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30453543,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-12T21:31:01.033Z","status":"ssl_error","status_checked_at":"2026-03-12T21:30:43.161Z","response_time":114,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bevy","bevy-plugin","bevy-retrograde","camera","pixel-perfect","rendering"],"created_at":"2024-11-17T20:14:18.725Z","updated_at":"2026-03-13T01:31:10.341Z","avatar_url":"https://github.com/celerysaltgames.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Bevy Retro Camera\n\n[![Crates.io](https://img.shields.io/crates/v/bevy_retro_camera.svg)](https://crates.io/crates/bevy_retro_camera)\n[![Docs.rs](https://docs.rs/bevy_retro_camera/badge.svg)](https://docs.rs/bevy_retro_camera)\n[![lines of code](https://tokei.rs/b1/github/celerysaltgames/bevy_retro_camera?category=code)](https://github.com/celerysaltgames/bevy_retro_camera)\n\n\n\u003cdiv align=\"center\"\u003e\n    \u003cem\u003e( Screenshot of \u003ca href=\"https://rafaelmatos.itch.io/epic-rpg-world-pack-free-demoancient-ruins\"\u003eEpic RPG World - Ancient Ruins\u003c/a\u003e rendered with Bevy and this crate )\u003c/em\u003e\n\u003c/div\u003e\n\n![Epic RPG screenshot](./docs/images/epic_rpg.png)\n\nBevy Retro camera is a 2D, pixel-perfect camera for Bevy.  It does work for **Bevy 0.8**.\n\n\n## Features\n\n- Easy to configure camera optimized for 2D pixel-art rendering.\n- Plugin that improve Bevy's rendering for pixel art -\u003e Will save you hours of \"Why my pixels are blurs ?\"\n\n## Quickstart\nCreate 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.\n\n```rust\n// Add RetroCameraPlugin to you app + a startup system\nfn main() {\n    App::new()\n        .add_plugin(RetroCameraPlugin)\n        .add_startup_system(setup)\n}\n\n// Configure your startup system\nfn setup(mut commands: Commands) {\n    let height: f32 = 240.0;  // Viewport size\n    let scale: f32 = 1.0;  // Viewport scaling factor\n    commands.spawn_bundle(RetroCameraBundle::fixed_height(height, scale));\n}\n```\n\n## Compatibility matrix\n\n| Bevy | bevy_retro_camera |\n|------|-------------------|\n| 0.8  | 1.0               |\n\n## Inspired by\n\n- The excellent [Bevy Cheatbook](https://bevy-cheatbook.github.io/cookbook/custom-projection.html) about custom projections.\n- Bevy's [Camera and Viewport update](https://github.com/bevyengine/bevy/commit/ae0ccfb4f6d41d2033be03b48e2538d1cf0cd86f).\n- The  _RetroCameraBundle_ of [Bevy Retrograde](https://crates.io/crates/bevy_retrograde)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcelerysaltgames%2Fbevy_retro_camera","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcelerysaltgames%2Fbevy_retro_camera","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcelerysaltgames%2Fbevy_retro_camera/lists"}