You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
thread 'main' panicked at /home/jokler/.local/share/cargo/registry/src/index.crates.io-6f17d22bba15001f/bevy_ecs-0.14.0/src/schedule/schedule.rs:383:33:
Error when initializing schedule PostUpdate: Tried to order against
`SystemTypeSet(
fn FunctionSystem<fn(
ParamSet<(
Query<(Transform, &mut GlobalTransform), (Or<(Changed<Transform>, Added<GlobalTransform>)>, Without<Parent>, Without<Children>)>,
Query<(Ref<Transform>, &mut GlobalTransform), (Without<Parent>, Without<Children>)>
)>,
RemovedComponents<Parent>
),
sync_simple_transforms>()
)`
in a schedule that has more than one
`SystemTypeSet(
fn FunctionSystem<fn(
ParamSet<(
Query<(Transform, &mut GlobalTransform), (Or<(Changed<Transform>, Added<GlobalTransform>)>, Without<Parent>, Without<Children>)>,
Query<(Ref<Transform>, &mut GlobalTransform), (Without<Parent>, Without<Children>)>
)>,
RemovedComponents<Parent>
),
sync_simple_transforms>()
)`
instance.
`SystemTypeSet(
fn FunctionSystem<fn(
ParamSet<(
Query<(Transform, &mut GlobalTransform), (Or<(Changed<Transform>, Added<GlobalTransform>)>, Without<Parent>, Without<Children>)>,
Query<(Ref<Transform>, &mut GlobalTransform), (Without<Parent>, Without<Children>)>
)>,
RemovedComponents<Parent>
),
sync_simple_transforms>()
)`
is a `SystemTypeSet` and cannot be used for ordering if ambiguous. Use a different set without this restriction.
The text was updated successfully, but these errors were encountered:
jamessizeland
added a commit
to jamessizeland/bevy_trauma_shake
that referenced
this issue
Aug 28, 2024
This panics right away, is there some way to order the plugins to resolve this?
The text was updated successfully, but these errors were encountered: