|
1 | 1 | use crate::{ |
2 | | - utility::GenericTypeInfoCell, FromReflect, FromType, Generics, GetTypeRegistration, |
3 | | - PartialReflect, Reflect, ReflectCloneError, ReflectFromPtr, ReflectMut, ReflectOwned, |
4 | | - ReflectRef, Set, SetInfo, TypeInfo, TypeParamInfo, TypePath, TypeRegistration, |
| 2 | + set::{Set, SetInfo}, |
| 3 | + utility::GenericTypeInfoCell, |
| 4 | + FromReflect, FromType, Generics, GetTypeRegistration, PartialReflect, Reflect, |
| 5 | + ReflectCloneError, ReflectFromPtr, ReflectMut, ReflectOwned, ReflectRef, TypeInfo, |
| 6 | + TypeParamInfo, TypePath, TypeRegistration, |
5 | 7 | }; |
6 | 8 | use bevy_platform::prelude::{Box, Vec}; |
7 | 9 | use bevy_reflect::{ |
@@ -377,11 +379,11 @@ where |
377 | 379 | } |
378 | 380 |
|
379 | 381 | fn apply(&mut self, value: &dyn PartialReflect) { |
380 | | - crate::set_apply(self, value); |
| 382 | + crate::set::set_apply(self, value); |
381 | 383 | } |
382 | 384 |
|
383 | 385 | fn try_apply(&mut self, value: &dyn PartialReflect) -> Result<(), crate::ApplyError> { |
384 | | - crate::set_try_apply(self, value) |
| 386 | + crate::set::set_try_apply(self, value) |
385 | 387 | } |
386 | 388 |
|
387 | 389 | fn reflect_kind(&self) -> ReflectKind { |
@@ -409,7 +411,7 @@ where |
409 | 411 | } |
410 | 412 |
|
411 | 413 | fn reflect_partial_eq(&self, value: &dyn PartialReflect) -> Option<bool> { |
412 | | - crate::set_partial_eq(self, value) |
| 414 | + crate::set::set_partial_eq(self, value) |
413 | 415 | } |
414 | 416 | } |
415 | 417 |
|
|
0 commit comments