Open
Description
Bevy version
0.15.1
Summary
i.e.
registry.register_type::<(usize,usize)>();
will not register a ReflectFromReflect
type data against the tuple.
for it to take, you have to manually do it via:
registry.register_type_data::<usize, ReflectFromReflect>
This means if I want to construct arbitrary types like:
stuct MyStruct {
pub foo: (usize,usize)
}
I have to always do that manual registration