I'd like to add a lot of systems to CoreSchedule::FixedUpdate, but I couldn't find any alternative way to in_schedule:
.add_system(
test.in_set(PhysicsSet)
.in_schedule(CoreSchedule::FixedUpdate),
)
In previous versions of bevy it could be done with a system set + run criteria, but now it doesn't seem to work anymore. Would it be possible to add them even if they're in different plugins?