mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 15:14:50 +00:00
add missing into_inner
to ReflectMut
(#3841)
`Mut<T>`, `ResMut<T>` etc. have `.into_inner()` methods, but `ReflectMut` doesn't for some reason.
This commit is contained in:
parent
1477765f62
commit
3431335ee9
1 changed files with 2 additions and 0 deletions
|
@ -197,3 +197,5 @@ pub struct ReflectMut<'a> {
|
|||
|
||||
#[cfg(feature = "bevy_reflect")]
|
||||
change_detection_impl!(ReflectMut<'a>, dyn Reflect,);
|
||||
#[cfg(feature = "bevy_reflect")]
|
||||
impl_into_inner!(ReflectMut<'a>, dyn Reflect,);
|
||||
|
|
Loading…
Reference in a new issue