Closed
Description
Bevy version
Tried: 0.9
and 523072902cecad440b5d2109077e437fcb7580b6
What you did
Deriving Reflect
on a simple enum works:
#[derive(Reflect)]
enum Inner {
Foo,
}
But deriving Reflect
on an enum
that wraps another enum does not:
#[derive(Reflect)] // <-- the trait `FromReflect` is not implemented for `Inner`
enum Outer {
Inner(Inner),
}
Metadata
Metadata
Assignees
Type
Projects
Status
Done