lowenware / dotrix

A 3D engine with ECS and Vulkan renderer for Rust developers
https://dotrix.rs
MIT License
290 stars 11 forks source link
3d-engine ecs gamedev multithreading rust vulkan vulkan-game-engine

Dotrix

Dotrix is an OpenSource 3D engine for Rust developers. The name is a derivation from dot and matrix. Two entities that both together and separately are keystones of rendering.

LICENSE LICENSE Discord

Important

Dotrix is under migration to Vulkan. If you are looking for old WGPU version, then check out release 0.5.3.

The main branch now holds version 0.6 of the engine that is under active development, but we try to keep it functional.

Demo

Dotrix Demo is a binary that comes within the engine to demonstrate it possibilities.

cargo run --release

Shaders

We are using GLSL shaders. There is no auto-compilation to SPV right now, so please use glslc:

glslc -fshader-stage=vertex src/models/shaders/non-rigged.vert.glsl -o src/models/shaders/non-rigged.vert.spv 
glslc -fshader-stage=fragment src/models/shaders/non-rigged.frag.glsl -o src/models/shaders/non-rigged.frag.spv 

Sponsors

Contributors

3rd Party Assets

Following 3rd party assets are being used in examples