From 99ceab087eec2f61551e8246b0c763ea7be6bff7 Mon Sep 17 00:00:00 2001 From: Gino Valente Date: Tue, 15 Mar 2022 22:16:16 -0700 Subject: [PATCH] Added GetTypeRegistration impl for reflected tuples --- crates/bevy_reflect/src/tuple.rs | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/crates/bevy_reflect/src/tuple.rs b/crates/bevy_reflect/src/tuple.rs index 05d8322f54784..e62fc2bc8c8ac 100644 --- a/crates/bevy_reflect/src/tuple.rs +++ b/crates/bevy_reflect/src/tuple.rs @@ -1,7 +1,10 @@ +use crate::{ + serde::Serializable, FromReflect, FromType, GetTypeRegistration, Reflect, ReflectDeserialize, + ReflectMut, ReflectRef, TypeRegistration, +}; +use serde::Deserialize; use std::any::Any; -use crate::{serde::Serializable, FromReflect, Reflect, ReflectMut, ReflectRef}; - /// A reflected Rust tuple. /// /// This trait is automatically implemented for arbitrary tuples of up to 12 @@ -418,6 +421,14 @@ macro_rules! impl_reflect_tuple { } } + impl<$($name: Reflect + for<'de> Deserialize<'de>),*> GetTypeRegistration for ($($name,)*) { + fn get_type_registration() -> TypeRegistration { + let mut registration = TypeRegistration::of::<($($name,)*)>(); + registration.insert::(FromType::<($($name,)*)>::from_type()); + registration + } + } + impl<$($name: FromReflect),*> FromReflect for ($($name,)*) { fn from_reflect(reflect: &dyn Reflect) -> Option {