{"id":16203117,"url":"https://github.com/michidk/vulkan-engine","last_synced_at":"2025-03-19T07:30:38.601Z","repository":{"id":44663557,"uuid":"334688450","full_name":"michidk/vulkan-engine","owner":"michidk","description":"A game engine writte for Vulkan in Rust","archived":false,"fork":false,"pushed_at":"2024-03-26T10:53:43.000Z","size":7693,"stargazers_count":25,"open_issues_count":8,"forks_count":1,"subscribers_count":6,"default_branch":"main","last_synced_at":"2025-02-28T16:17:21.173Z","etag":null,"topics":["game-engine","rust","vulkan"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/michidk.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-01-31T15:29:40.000Z","updated_at":"2024-10-26T11:33:07.000Z","dependencies_parsed_at":"2024-10-27T20:21:20.024Z","dependency_job_id":"16baa02d-a8fb-4254-b510-38dac31d9542","html_url":"https://github.com/michidk/vulkan-engine","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michidk%2Fvulkan-engine","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michidk%2Fvulkan-engine/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michidk%2Fvulkan-engine/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michidk%2Fvulkan-engine/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/michidk","download_url":"https://codeload.github.com/michidk/vulkan-engine/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243975225,"owners_count":20377542,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["game-engine","rust","vulkan"],"created_at":"2024-10-10T09:51:53.291Z","updated_at":"2025-03-19T07:30:36.696Z","avatar_url":"https://github.com/michidk.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Vulkan Engine\n\n[![Continuous integration](https://img.shields.io/github/actions/workflow/status/michidk/vulkan-engine/ci.yaml?label=CI\u0026style=for-the-badge)](https://github.com/michidk/vulkan-engine/actions)\n\nThis repository contains a playground project by [Jonas](https://github.com/Shemnei), [Robin](https://github.com/Rob2309), and [Michael](https://github.com/michidk) to learn the Vulkan graphics API. It uses the [Rust language](https://www.rust-lang.org/) and the [Ash](https://github.com/MaikKlein/ash) Vulkan wrapper.\n\n## Goal\n\nThe goal is to build a somewhat usable game engine and a demo using it. While we are probably never going to implement a fully-fledged engine, we will make shortcuts to implement specific parts of it that we find interesting. It is more a learning project than anything else.\n\n## Features\n\nCurrently implemented features are:\n\n- A scene graph with entities and components\n- Vulkan rendering\n- BRDF shading and lighting\n- Deferred rendering and post-processing effects\n- Debug UI Layer with frame stats, scene graph and component inspectors\n- `.obj` parser\n- Runs on both Linux and Windows\n\n## Screenshots\n\nBRDF testing:\n\n![brdf testing](/.github/images/examples/brdf.png)\n\nDebug UI:\n\n![debug ui](/.github/images/examples/debug-ui.png)\n\nCustom meshes:\n![custom meshes](/.github/images/examples/suzanne.png)\n\n## Workspace\n\n| Folder | Description | Readme |\n| ---- | ----------- | - |\n| [crates/engine](/crates/engine) | Main engine library | This one |\n| [crates/ve_asset](/crates/ve_asset) | Utility that converts files into our custom format | [here](./crates/ve_asset/README.md) |\n| [crates/ve_format](/crates/ve_format) | Stores some shared structs | [here](./crates/ve_format/README.md) |\n| [crates/ve_shader_reflect](/crates/ve_shader_reflect) | Retrieves metadata from compiled shaders to feed into the material pipeline | [here](/crates/ve_shader_reflect/README.md) |\n\n\n## Examples\n\nExamples are in the [crates/engine/examples](crates/engine/examples) folder. They can be run with `cargo +nightly run --example \u003cname\u003e`.\n| Name | Description |\n| ---- | ----------- |\n| [minimal](/crates/engine/examples/minimal/) | Displays a triangle using vertex colors |\n| [brdf](/crates/engine/examples/brdf/) | Renders a couple of spheres using physically-based rendering |\n| [mesh](/crates/engine/examples/mesh/) | Loads and renders a custom mesh |\n| [textured_material](/crates/engine/examples/textured_material/) | Creates a texture at runtime and renders it onto a quad |\n| [components](/crates/engine/examples/components/) | Shows off the engine's component system |\n\n## Building\n\n### Prerequisites\n\n- [Rust](https://www.rust-lang.org/) (2021 Edition)\n- [Vulkan SDK](https://www.lunarg.com/vulkan-sdk/) (at least v1.2.189.2)\n\nBuild with `make build` or run an example with `make run`.\n\n## Resources\n\n- [Vulkan 1.2 Specs](https://www.khronos.org/registry/vulkan/specs/1.2-khr-extensions/html/index.html)\n- [Vulkan Tutorial](https://vulkan-tutorial.com/Introduction)\n- [Ash Documentation](https://docs.rs/ash/0.33.3/ash/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmichidk%2Fvulkan-engine","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmichidk%2Fvulkan-engine","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmichidk%2Fvulkan-engine/lists"}