summaryrefslogtreecommitdiff
path: root/ecs/src/lib.rs
AgeCommit message (Expand)Author
10 daysrefactor(ecs): rewrite component storageHEADmasterHampusM
13 daysperf(ecs): replace component::Sequence::into_vec fn with into_arrayHampusM
2025-02-05refactor(ecs): replace component::IsOptional enum with boolHampusM
2025-02-02chore(ecs): change level of certain logs to traceHampusM
2025-02-02chore(ecs): remove 'debug' crate featureHampusM
2025-01-20perf(ecs): use Query::iter_with_euids to iterate phasesHampusM
2025-01-10refactor(ecs): add struct for querying using component metadataHampusM
2025-01-05feat(ecs): allow control over component mutability in queryHampusM
2025-01-02refactor(ecs): make component::Sequence return metadata as arrayHampusM
2024-12-20perf(ecs): use hashbrown's HashMap & HashSetHampusM
2024-12-16fix(ecs): make World::default fn behave same as World::new fnHampusM
2024-12-09feat(ecs): add action to despawn entityHampusM
2024-12-09refactor(ecs): use phases for system orderingHampusM
2024-11-11refactor(ecs): fix clippy lintsHampusM
2024-11-11refactor(ecs): use same ID for entities & componentsHampusM
2024-11-02feat(ecs): add creating static entitiesHampusM
2024-11-02fix(ecs): add check if entity already exists before creating itHampusM
2024-10-16feat(ecs): add stats sole containing current tickHampusM
2024-08-21refactor(ecs): fix clippy lintsHampusM
2024-08-16feat(ecs): make relationships creatable without reference to worldHampusM
2024-08-15feat(ecs): add component removed eventHampusM
2024-08-14feat(ecs): add component added eventHampusM
2024-08-12feat(ecs): add action for removing components(s) from entityHampusM
2024-08-12feat(ecs): add action to add component(s) to entityHampusM
2024-08-10refactor(ecs): create archetype lookup entries on-the-goHampusM
2024-08-07feat(ecs): add start eventHampusM
2024-08-05fix(ecs): always sort components & component metadataHampusM
2024-08-02feat(ecs): add relationshipsHampusM
2024-07-29feat(ecs): add fn to prepare world without using the event_loop fnHampusM
2024-07-28refactor(ecs): move ArchetypeComponentsHash to archetype::IdHampusM
2024-06-29refactor(ecs): pass World ref to system run & param new functionsHampusM
2024-06-22feat(ecs): add query options filter entitiesHampusM
2024-06-20refactor(ecs): fix Clippy lintsHampusM
2024-06-16fix(ecs): update archetype lookups when entity is spawned with ActionsHampusM
2024-06-16refactor(ecs): add component ID structHampusM
2024-06-15perf(ecs): store components using archetypesHampusM
2024-06-06refactor(ecs): move ComponentStorage to it's own moduleHampusM
2024-06-06chore(ecs): remove support for specifying component to be dropped lastHampusM
2024-05-24feat(ecs): add component name to component locking panic messageHampusM
2024-05-24fix(ecs): prevent unnecessary locking in Sequence::from_componentsHampusM
2024-05-19feat(ecs): add support for optional query componentsHampusM
2024-04-13feat(ecs): add extensionsHampusM
2024-04-11feat(ecs): add specifying to drop soles lastHampusM
2024-04-10feat(ecs): add weak ref singleHampusM
2024-04-10feat(ecs): reexport Sole derive macroHampusM
2024-04-10chore(ecs): make shared singletons not componentsHampusM
2024-04-10chore(ecs): remove Event trait id method & take events by valueHampusM
2024-04-09feat(ecs): add support for singleton componentsHampusM
2024-04-09refactor: move query structs to new query moduleHampusM
2024-04-09refactor(ecs): make entity finding a ComponentStorage methodHampusM