1 2 3 4 5 6 7 8 9 10 11 12 13 14
use bevy::prelude::{ Entity, Name, Query, }; pub type QueryEntityNames<'w, 's> = Query< 'w, 's, WorldQuery, ReadOnlyWorldQuery, >; pub type WorldQuery = (Entity, &'static Name); pub type ReadOnlyWorldQuery = ();