mirror of
https://github.com/bevyengine/bevy
synced 2024-11-23 05:03:47 +00:00
Consolidate *-Meta
resources in a tuple to avoid deriving SystemParam
This commit is contained in:
parent
d756c0d3f5
commit
5affd298f0
1 changed files with 1 additions and 3 deletions
|
@ -994,9 +994,7 @@ pub fn queue_mesh_view_bind_groups(
|
|||
render_device: Res<RenderDevice>,
|
||||
mesh_pipeline: Res<MeshPipeline>,
|
||||
shadow_samplers: Res<ShadowSamplers>,
|
||||
light_meta: Res<LightMeta>,
|
||||
global_light_meta: Res<GlobalLightMeta>,
|
||||
fog_meta: Res<FogMeta>,
|
||||
(light_meta, global_light_meta, fog_meta): (Res<LightMeta>, Res<GlobalLightMeta>, Res<FogMeta>),
|
||||
view_uniforms: Res<ViewUniforms>,
|
||||
views: Query<(
|
||||
Entity,
|
||||
|
|
Loading…
Reference in a new issue