Skip to content

Commit

Permalink
Add missing StaticSystemParam::queue implementation. (#14051)
Browse files Browse the repository at this point in the history
# Objective

`StaticSystemParam` should delegate all `SystemParam` methods to the
inner param, but it looks like it was missed when the new `queue()`
method was added in #10839.

## Solution

Implement `StaticSystemParam::queue()` to delegate to the inner param.
  • Loading branch information
chescock authored and mockersf committed Jun 27, 2024
1 parent 7b98db6 commit bea8823
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions crates/bevy_ecs/src/system/system_param.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1609,6 +1609,10 @@ unsafe impl<P: SystemParam + 'static> SystemParam for StaticSystemParam<'_, '_,
P::apply(state, system_meta, world);
}

fn queue(state: &mut Self::State, system_meta: &SystemMeta, world: DeferredWorld) {
P::queue(state, system_meta, world);
}

unsafe fn get_param<'world, 'state>(
state: &'state mut Self::State,
system_meta: &SystemMeta,
Expand Down

0 comments on commit bea8823

Please sign in to comment.