bevy_scene: Add missing registration for SmallVec<[Entity; 8]> (#6578)

# Objective

> Part of #6573

`Children` was not being properly deserialized in scenes. This was due to a missing registration on `SmallVec<[Entity; 8]>`, which is used by `Children`.

## Solution

Register `SmallVec<[Entity; 8]>`.

---

## Changelog

- Registered `SmallVec<[Entity; 8]>`
This commit is contained in:
Gino Valente 2022-11-14 23:08:23 +00:00
parent af2a199254
commit 1f8cc9dd67

View file

@ -41,6 +41,7 @@ impl Plugin for HierarchyPlugin {
fn build(&self, app: &mut App) {
app.register_type::<Children>()
.register_type::<Parent>()
.register_type::<smallvec::SmallVec<[bevy_ecs::entity::Entity; 8]>>()
.add_event::<HierarchyEvent>();
}
}