diff --git a/release-content/migration-guides/scene_spawner_api.md b/release-content/migration-guides/scene_spawner_api.md new file mode 100644 index 0000000000..5303682488 --- /dev/null +++ b/release-content/migration-guides/scene_spawner_api.md @@ -0,0 +1,12 @@ +--- +title: `SceneSpawner` methods have been renamed and replaced. +pull_requests: [18358] +--- + +Some methods on `SceneSpawner` have been renamed: + - `despawn` -> `despawn_dynamic` + - `despawn_sync` -> `despawn_dynamic_sync` + - `update_spawned_scenes` -> `update_spawned_dynamic_scenes` + +In their place, we've added `despawn`, `despawn_sync`, and `update_spawned_scenes` which all act on +`Scene`s (as opposed to `DynamicScene`s).