Skip to content

Commit e53e52e

Browse files
authored
Fix cargo fmt issue
1 parent 694d954 commit e53e52e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/render/material.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,8 @@ where
133133
// set. Bevy is loose on its expectation of when systems in the `PrepareAssets` set execute (for performance) and only needs them
134134
// to run before the `Prepare` set (which is after Queue). This invites the possibility of an intermittent incorrect ordering dependent
135135
// on the scheduler.
136-
queue_material_tilemap_meshes::<M>.in_set(RenderSet::Queue)
136+
queue_material_tilemap_meshes::<M>
137+
.in_set(RenderSet::Queue)
137138
.after(prepare::prepare),
138139
bind_material_tilemap_meshes::<M>.in_set(RenderSet::PrepareBindGroups),
139140
),

0 commit comments

Comments
 (0)