Fix unconfigured set
This commit is contained in:
parent
d5f14bc037
commit
cc4e2d1f07
|
@ -107,9 +107,12 @@ impl Plugin for BlueprintsPlugin {
|
||||||
.add_plugins(RonAssetPlugin::<BlueprintPreloadAssets>::new(&["meta.ron"]))
|
.add_plugins(RonAssetPlugin::<BlueprintPreloadAssets>::new(&["meta.ron"]))
|
||||||
.configure_sets(
|
.configure_sets(
|
||||||
Update,
|
Update,
|
||||||
(GltfBlueprintsSet::Spawn, GltfBlueprintsSet::AfterSpawn)
|
(
|
||||||
.chain()
|
GltfComponentsSet::Injection,
|
||||||
.after(GltfComponentsSet::Injection),
|
GltfBlueprintsSet::Spawn,
|
||||||
|
GltfBlueprintsSet::AfterSpawn,
|
||||||
|
)
|
||||||
|
.chain(),
|
||||||
)
|
)
|
||||||
.add_systems(
|
.add_systems(
|
||||||
Update,
|
Update,
|
||||||
|
|
Loading…
Reference in New Issue