{"id":30078808,"url":"https://github.com/renzora/engine","last_synced_at":"2026-06-30T01:00:48.440Z","repository":{"id":308757932,"uuid":"1033734621","full_name":"renzora/engine","owner":"renzora","description":"Renzora Engine is a modular cross-platform rust game engine using Bevy","archived":false,"fork":false,"pushed_at":"2026-06-26T16:31:32.000Z","size":278568,"stargazers_count":221,"open_issues_count":4,"forks_count":15,"subscribers_count":4,"default_branch":"main","last_synced_at":"2026-06-26T18:10:32.643Z","etag":null,"topics":["2d","3d","bevy","engine","game","lua","physics","renzora","rhai","rust","ui"],"latest_commit_sha":null,"homepage":"https://discord.gg/9UHUGUyDJv","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/renzora.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE-APACHE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":"docs/roadmap.md","authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-08-07T09:08:23.000Z","updated_at":"2026-06-26T16:31:35.000Z","dependencies_parsed_at":"2025-08-24T00:38:39.929Z","dependency_job_id":"682fe29d-c0ce-45e5-98c5-124ba442c435","html_url":"https://github.com/renzora/engine","commit_stats":null,"previous_names":["renzora/engine"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/renzora/engine","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/renzora%2Fengine","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/renzora%2Fengine/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/renzora%2Fengine/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/renzora%2Fengine/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/renzora","download_url":"https://codeload.github.com/renzora/engine/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/renzora%2Fengine/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34948227,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-29T02:00:05.398Z","response_time":58,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["2d","3d","bevy","engine","game","lua","physics","renzora","rhai","rust","ui"],"created_at":"2025-08-08T18:01:09.390Z","updated_at":"2026-06-30T01:00:48.433Z","avatar_url":"https://github.com/renzora.png","language":"Rust","funding_links":[],"categories":["Rust"],"sub_categories":[],"readme":"# Renzora Engine\n\nA 3D game engine and visual editor built on \u003ca href=\"https://bevyengine.org/\" target=\"_blank\" rel=\"noopener noreferrer\"\u003eBevy 0.19\u003c/a\u003e. It's fully compatible with the Bevy plugin ecosystem and is itself modular — every system is a plugin you can add, remove, or replace. Use it as a standalone engine to build games out of the box, or treat it as a customizable foundation you can modify into your own bespoke engine.\n\n![Renzora Editor](assets/previews/interface.png)\n\n\u003e **Warning:** Early alpha. Expect bugs, incomplete features, and breaking changes between versions.\n\n\u003e **AI-Assisted Development:** This project uses AI code generation tools (Claude by Anthropic) throughout development. If that's a concern, check out \u003ca href=\"https://bevyengine.org/\" target=\"_blank\" rel=\"noopener noreferrer\"\u003eBevy\u003c/a\u003e, \u003ca href=\"https://godotengine.org/\" target=\"_blank\" rel=\"noopener noreferrer\"\u003eGodot\u003c/a\u003e, or \u003ca href=\"https://fyrox.rs/\" target=\"_blank\" rel=\"noopener noreferrer\"\u003eFyrox\u003c/a\u003e.\n\n## Getting Started\n\n**Prerequisites:** \u003ca href=\"https://docs.docker.com/get-docker/\" target=\"_blank\" rel=\"noopener noreferrer\"\u003eDocker\u003c/a\u003e, and Rust just to install the CLI.\n\n```bash\ncargo install renzora     # installs the `renzora` command\nrenzora new engine        # scaffold a new project\ncd engine\nrenzora run               # build the editor and launch it (first run is slow)\n```\n\nEverything builds inside a container, so Docker handles the rest — no toolchain or system libraries to set up, and the build is identical on every machine. The editor runs on your computer, not in the container.\n\n### Building from source without Docker\n\nWorking on the engine itself, or prefer no Docker? Clone the repo and build natively for your own platform with `cargo renzora`:\n\n```bash\ngit clone https://github.com/renzora/engine.git\ncd engine\ncargo renzora             # build, stage dist/, and launch the editor\n```\n\nThe build lands in `dist/\u003cplatform\u003e/`. Use `cargo renzora dist` to build without launching. Builds are host-only; for other platforms use `renzora build` (Docker).\n\nOn **Linux** you also need the usual graphics/audio dev headers:\n\n```bash\nsudo apt install pkg-config libx11-dev libxcursor-dev libxrandr-dev libxi-dev \\\n  libwayland-dev libxkbcommon-dev libasound2-dev libudev-dev\n```\n\n### Renzora CLI Commands\n\n| Command | What it does |\n|---|---|\n| `renzora new \u003cname\u003e` | Scaffold a new project. |\n| `renzora run [editor\\|runtime]` | Build for your machine and launch it (editor by default). |\n| `renzora build [platforms]` | Cross-build for one or more platforms (no args = all). |\n| `renzora test` | Run the test suite. |\n| `renzora add \u003cname\u003e [--editor\\|--dylib]` | Add a plugin crate. |\n| `renzora remove \u003cname\u003e` | Delete a plugin crate. |\n| `renzora shell` | Open a shell in the build container. |\n\nRun `renzora --help` for the rest (`init`, `check`, `upx`, `clean`, `destroy`).\n\nPlatforms: `windows`, `linux`, `macos`, `wasm`, `android`, `ios`. Builds land in `dist/\u003cplatform\u003e/` — the runtime build doubles as a dedicated server (run it with `--server`).\n\nThe toolchain image is multi-arch (amd64 + arm64), so Apple Silicon Macs run it natively. Two arch caveats: `linux` builds the container's native arch (`linux-x64` or `linux-arm64`), and `android` needs the amd64 image (Google publishes no arm64-Linux NDK) — on arm64 that lane is skipped with a warning.\n\n## Documentation\n\nFull documentation — getting started, scripting, UI, plugins, exporting, and more — lives on the website:\n\n\u003cstrong\u003e\u003ca href=\"https://renzora.com/docs\" target=\"_blank\" rel=\"noopener noreferrer\"\u003erenzora.com/docs\u003c/a\u003e\u003c/strong\u003e\n\n## Supported Platforms\n\n| Platform | Devices |\n|----------|---------|\n| Windows x64 | Desktop, PCVR (SteamVR, Oculus Link) |\n| Linux x64 | Desktop, Steam Deck |\n| macOS | Intel + Apple Silicon |\n| Web (WASM) | Chrome 113+, Edge 113+, Firefox Nightly |\n| Android ARM64 | Phones, tablets, Meta Quest, Pico, HTC Vive Focus |\n| iOS | iPhone, iPad |\n| Apple TV | Apple TV 4K, Apple TV HD |\n\n## Supported File Formats\n\n| Format | Type |\n|--------|------|\n| `.glb` / `.gltf` / `.fbx` / `.obj` / `.stl` / `.ply` | 3D models |\n| `.ron` | Scene files |\n| `.rhai` / `.lua` | Scripts |\n| `.blueprint` | Visual script graphs |\n| `.material` | Material graphs |\n| `.particle` | Particle effects |\n| `.png` / `.jpg` / `.hdr` / `.exr` | Textures |\n| `.ogg` / `.mp3` / `.wav` / `.flac` | Audio (native only) |\n| `.rpak` | Compressed asset archives |\n\n## License\n\nDual-licensed under MIT or Apache 2.0.\n\n- \u003ca href=\"LICENSE-MIT\" target=\"_blank\" rel=\"noopener noreferrer\"\u003eMIT License\u003c/a\u003e\n- \u003ca href=\"LICENSE-APACHE\" target=\"_blank\" rel=\"noopener noreferrer\"\u003eApache License 2.0\u003c/a\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frenzora%2Fengine","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frenzora%2Fengine","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frenzora%2Fengine/lists"}