matrix_engine

Crates.iomatrix_engine
lib.rsmatrix_engine
version0.2.4
sourcesrc
created_at2023-05-12 19:26:21.041963
updated_at2024-10-03 22:33:21.214282
descriptiona small game engine developed by drmatrix
homepage
repository
max_upload_size
id863236
size238,437
DrMatrix007 (DrMatrix007)

documentation

README

MATRIX ENGINE

Hi, this is a small game engine built in rust. It contains ECS, and basic renderer. enjoy.

BASIC USAGE

this is opens a basic window. implement your own Plugin for adding systems for the ECS.

fn main() {
    let mut engine = <Engine>::new(EngineArgs::new(SingleThreaded, SingleThreaded));

    engine.add_scene_plugin(WindowPlugin::new("hello example!"));

    engine.add_scene_plugin(RendererPlugin);
}
Commit count: 0

cargo fmt