Crates.io | jelly_ecs |
lib.rs | jelly_ecs |
version | 1.0.1 |
source | src |
created_at | 2021-09-17 22:18:33.859024 |
updated_at | 2021-09-17 23:02:30.721521 |
description | A simple but functional ECS |
homepage | |
repository | https://github.com/jellycat-io/jelly_ecs |
max_upload_size | |
id | 453033 |
size | 61,989 |
A simple but functional ECS. It was created mostly for game development but should be applicable to other projects.
Feel free to open issues if bugs are encountered and even contribute with pull requests.
use jelly_ecs::World;
struct Position(pub f32, pub f32);
struct Health(pub u32);
fn main() -> Result<()> {
let mut world = World::new();
world.register_component::<Position>();
world.register_component::<Health>();
world.create_entity()
.with_component(Position(10.0, 20.0))?
.with_component(Health(100))?;
let query = world
.query()
.with_component::<Position>()?
.with_component::<Health>()?
.run();
let player = &query.1[0];
}