We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 694d954 commit e53e52eCopy full SHA for e53e52e
src/render/material.rs
@@ -133,7 +133,8 @@ where
133
// set. Bevy is loose on its expectation of when systems in the `PrepareAssets` set execute (for performance) and only needs them
134
// to run before the `Prepare` set (which is after Queue). This invites the possibility of an intermittent incorrect ordering dependent
135
// on the scheduler.
136
- queue_material_tilemap_meshes::<M>.in_set(RenderSet::Queue)
+ queue_material_tilemap_meshes::<M>
137
+ .in_set(RenderSet::Queue)
138
.after(prepare::prepare),
139
bind_material_tilemap_meshes::<M>.in_set(RenderSet::PrepareBindGroups),
140
),
0 commit comments