Strip down bundle and correct overly broad query.
This commit is contained in:
parent
0a141f078b
commit
e8a15fd84d
|
@ -134,9 +134,6 @@ pub struct MapBundle<D: 'static + Clone + Default + Send + Sync> {
|
||||||
pub spawn_colliders: SpawnColliders,
|
pub spawn_colliders: SpawnColliders,
|
||||||
pub spawn_collider_per_tile: SpawnColliderPerTile,
|
pub spawn_collider_per_tile: SpawnColliderPerTile,
|
||||||
pub spawn_portals: SpawnPortals,
|
pub spawn_portals: SpawnPortals,
|
||||||
pub children: Children,
|
|
||||||
pub transform: Transform,
|
|
||||||
pub global_transform: GlobalTransform,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct GridBuilder {
|
pub struct GridBuilder {
|
||||||
|
@ -419,7 +416,7 @@ fn spawn_portals<D: 'static + Clone + Default + Send + Sync>(
|
||||||
fn spawn_portal_colliders<D: 'static + Clone + Default + Send + Sync>(
|
fn spawn_portal_colliders<D: 'static + Clone + Default + Send + Sync>(
|
||||||
mut commands: Commands,
|
mut commands: Commands,
|
||||||
map: Query<(Entity, &SpawnColliders), With<Map<D>>>,
|
map: Query<(Entity, &SpawnColliders), With<Map<D>>>,
|
||||||
portals: Query<(Entity, &Transform), Without<Collider>>,
|
portals: Query<(Entity, &Transform), (With<Portal>, Without<Collider>)>,
|
||||||
) {
|
) {
|
||||||
for (map_entity, spawn_colliders) in map.iter() {
|
for (map_entity, spawn_colliders) in map.iter() {
|
||||||
if **spawn_colliders {
|
if **spawn_colliders {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user