component_group
component_group copied to clipboard
A Rust crate for working with a group of Components (in the Specs ECS)
Results
2
component_group issues
Sort by
recently updated
recently updated
newest added
It is kind of awkward sometimes to call `group.create(&mut world)`. Some people might prefer the inverse of that API: `world.create_group(group)`. This is possible via an extension trait: ```rust trait WorldGroupExt...
enhancement
Let's say you have a player group that looks like this: ```rust #[derive(ComponentGroup)] struct PlayerComponents { player: Player, // marker component position: Position, health: Health, animation: Option, } ``` The...
enhancement