| Crates.io | matrix_engine |
| lib.rs | matrix_engine |
| version | 0.2.4 |
| created_at | 2023-05-12 19:26:21.041963+00 |
| updated_at | 2024-10-03 22:33:21.214282+00 |
| description | a small game engine developed by drmatrix |
| homepage | |
| repository | |
| max_upload_size | |
| id | 863236 |
| size | 238,437 |
Hi, this is a small game engine built in rust. It contains ECS, and basic renderer. enjoy.
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);
}