diff options
author | HampusM <hampus@hampusmat.com> | 2025-03-23 20:23:47 +0100 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2025-03-23 20:23:47 +0100 |
commit | 727756c717bca951fc6f8e25d4d206b95d62fbb9 (patch) | |
tree | 903f1c9ec852d23dc47b582b2c560296b6ae07a2 /ecs/src/lib.rs | |
parent | 0a7549ebaa7683b0c58379c2b0b4320981124acf (diff) |
refactor(ecs): rename query::ComponentIter to Iter
Diffstat (limited to 'ecs/src/lib.rs')
-rw-r--r-- | ecs/src/lib.rs | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/ecs/src/lib.rs b/ecs/src/lib.rs index 3adc415..59129b0 100644 --- a/ecs/src/lib.rs +++ b/ecs/src/lib.rs @@ -20,7 +20,7 @@ use crate::phase::{Phase, START as START_PHASE}; use crate::query::flexible::Query as FlexibleQuery; use crate::query::term::Without; use crate::query::{ - ComponentIter, + Iter as QueryIter, TermWithFieldTuple as QueryTermWithFieldTuple, TermWithoutFieldTuple as QueryTermWithoutFieldTuple, Terms as QueryTerms, @@ -534,11 +534,6 @@ impl World fn emit_event_by_id(&self, event_id: Uid) { - //let query = self.flexible_query([ - // ComponentMetadata::of::<SystemComponent>(), - // ComponentMetadata { id: event_id, is_optional: false }, - //]); - let mut query_required_ids = [SystemComponent::id(), event_id]; let query = self.flexible_query( @@ -547,8 +542,7 @@ impl World .build(), ); - for (system,) in ComponentIter::<(&SystemComponent,), _>::new(self, query.iter()) - { + for (system,) in QueryIter::<(&SystemComponent,), _>::new(self, query.iter()) { unsafe { system.system.run(self); } |