bevy_ecs_ldtk has some pretty intense scheduling requirements. I would like to add some systems to run during CoreStage::PostUpdate, but before the removal_helper systems from this plugin. For now, I'll need to insert a stage before PostUpdate to accomplish this, which isn't ideal. Some public SystemLabels would be great
Can you add a PR for this? Ideally lets try to use labels we can export from the library module for ease of use. I should be able to get around to it next week sometime if you are unavailable.
bevy_ecs_ldtk
has some pretty intense scheduling requirements. I would like to add some systems to run duringCoreStage::PostUpdate
, but before theremoval_helper
systems from this plugin. For now, I'll need to insert a stage beforePostUpdate
to accomplish this, which isn't ideal. Some publicSystemLabels
would be great