Skip to content

Commit

Permalink
Rebased on main
Browse files Browse the repository at this point in the history
  • Loading branch information
ManevilleF committed Jul 9, 2022
1 parent db0af8d commit 149338a
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion crates/bevy_sprite/src/render/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,15 @@ pub fn extract_sprite_events(
pub fn extract_sprites(
mut extracted_sprites: ResMut<ExtractedSprites>,
texture_atlases: Extract<Res<Assets<TextureAtlas>>>,
sprite_query: Extract<Query<(&Visibility, &Sprite, &GlobalTransform, &Handle<Image>, Option<&TextureSheet>)>>,
sprite_query: Extract<
Query<(
&Visibility,
&Sprite,
&GlobalTransform,
&Handle<Image>,
Option<&TextureSheet>,
)>,
>,
) {
extracted_sprites.sprites.clear();
for (visibility, sprite, transform, handle, sheet) in sprite_query.iter() {
Expand Down

0 comments on commit 149338a

Please sign in to comment.