mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 15:14:50 +00:00
Add the Has world query to bevy_ecs::prelude (#9204)
# Objective Addresses #9196 by adding query::Has to the bevy_ecs::prelude.
This commit is contained in:
parent
6f8089d35c
commit
fd35e582dc
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ pub mod prelude {
|
|||
component::Component,
|
||||
entity::Entity,
|
||||
event::{Event, EventReader, EventWriter, Events},
|
||||
query::{Added, AnyOf, Changed, Or, QueryState, With, Without},
|
||||
query::{Added, AnyOf, Changed, Has, Or, QueryState, With, Without},
|
||||
removal_detection::RemovedComponents,
|
||||
schedule::{
|
||||
apply_deferred, apply_state_transition, common_conditions::*, Condition,
|
||||
|
|
Loading…
Reference in a new issue