Fix unconfigured set

This commit is contained in:
Jan Hohenheim 2024-09-10 10:37:45 +02:00
parent d5f14bc037
commit cc4e2d1f07
No known key found for this signature in database
1 changed files with 6 additions and 3 deletions

View File

@ -107,9 +107,12 @@ impl Plugin for BlueprintsPlugin {
.add_plugins(RonAssetPlugin::<BlueprintPreloadAssets>::new(&["meta.ron"]))
.configure_sets(
Update,
(GltfBlueprintsSet::Spawn, GltfBlueprintsSet::AfterSpawn)
.chain()
.after(GltfComponentsSet::Injection),
(
GltfComponentsSet::Injection,
GltfBlueprintsSet::Spawn,
GltfBlueprintsSet::AfterSpawn,
)
.chain(),
)
.add_systems(
Update,