Make sure to use latest Rust version, as the engine is always kept up to date.
Blue Engine is a general-purpose, easy-to-use, extendable, and portable graphics engine written in rust. The engine can run on many popular back-end APIs including Vulkan, D3D-12, GL-ES 3, and Metal as well as Windows, Linux, Mobile, and OSX to ensure cross-platform compatibility.
Hello World:
```rust use blueengine::{ header::{ Engine, ObjectSettings }, primitiveshapes::triangle };
fn main() { // initialize the engine let mut engine = Engine::new().expect("win");
// create a triangle
triangle("my triangle", ObjectSettings::default(), &mut engine.renderer, &mut engine.objects).unwrap();
// run the engine
engine
.update_loop(move |_, _, _, _, _, _| {})
.expect("Error during update loop");
} ```
[WIP] [Documentation](https://aryanpurtech.github.io/BlueEngineDocs/)
Check out the workflow for roadmap, status, ...
Check out the examples folder to get a sense of how things are done
Check out the utilities library for extra functionality with the engine
Check out the editor
the credits to the image on top: NotPB