ciri

Crates.iociri
lib.rsciri
version0.1.0
created_at2025-07-01 20:51:08.557932+00
updated_at2025-07-01 20:51:08.557932+00
descriptionSimple game engine using three-d
homepage
repositoryhttps://github.com/malezjaa/ciri
max_upload_size
id1733877
size81,762
Krzysztof (malezjaa)

documentation

README

Ciri Engine

project-image

Simple game engine using [three-d](https://github.com/asny/three-d) for rendering.

shieldsshieldsshields

🧐 Features

Here're some of the project's best features:

  • Multiplatform
  • 2D and 3D
  • Easy usage

🛠️ Installation Steps:

1. Add crate

cargo add ciri

2. Add code

fn main() {
    let engine = Engine::new(EngineOptions::builder().with_name("Builder Example").build())
        .with_orbit_camera();

    engine.render_loop_with_camera(move |mut frame, camera| {
        ...
    })
}

3. Run

cargo run

🛡️ License:

This project is licensed under the MIT

💖Like my work?

Support me at https://github.com/sponsors/malezjaa

Commit count: 0

cargo fmt