I need to configure the ordering in which two dependent manifests are loaded. While I could do this with system ordering, https://github.com/bevyengine/bevy/issues/13064 means that I need a true system label to do so nicely.
The existing system label is inadequate: we need access to the full type. We can probably add a marker generic to ProcessManifestSet though, and use () as a default which means "all systems".
I need to configure the ordering in which two dependent manifests are loaded. While I could do this with system ordering, https://github.com/bevyengine/bevy/issues/13064 means that I need a true system label to do so nicely.
The existing system label is inadequate: we need access to the full type. We can probably add a marker generic to
ProcessManifestSet
though, and use()
as a default which means "all systems".