@@ -6,22 +6,22 @@ use bevy_reflect_derive::{impl_from_reflect_value, impl_reflect_struct, impl_ref
6
6
use glam:: * ;
7
7
8
8
impl_reflect_struct ! (
9
- #[ reflect( Debug , PartialEq , Default ) ]
9
+ #[ reflect( Debug , Hash , PartialEq , Default ) ]
10
10
struct IVec2 {
11
11
x: i32 ,
12
12
y: i32 ,
13
13
}
14
14
) ;
15
15
impl_reflect_struct ! (
16
- #[ reflect( Debug , PartialEq , Default ) ]
16
+ #[ reflect( Debug , Hash , PartialEq , Default ) ]
17
17
struct IVec3 {
18
18
x: i32 ,
19
19
y: i32 ,
20
20
z: i32 ,
21
21
}
22
22
) ;
23
23
impl_reflect_struct ! (
24
- #[ reflect( Debug , PartialEq , Default ) ]
24
+ #[ reflect( Debug , Hash , PartialEq , Default ) ]
25
25
struct IVec4 {
26
26
x: i32 ,
27
27
y: i32 ,
@@ -31,22 +31,22 @@ impl_reflect_struct!(
31
31
) ;
32
32
33
33
impl_reflect_struct ! (
34
- #[ reflect( Debug , PartialEq , Default ) ]
34
+ #[ reflect( Debug , Hash , PartialEq , Default ) ]
35
35
struct UVec2 {
36
36
x: u32 ,
37
37
y: u32 ,
38
38
}
39
39
) ;
40
40
impl_reflect_struct ! (
41
- #[ reflect( Debug , PartialEq , Default ) ]
41
+ #[ reflect( Debug , Hash , PartialEq , Default ) ]
42
42
struct UVec3 {
43
43
x: u32 ,
44
44
y: u32 ,
45
45
z: u32 ,
46
46
}
47
47
) ;
48
48
impl_reflect_struct ! (
49
- #[ reflect( Debug , PartialEq , Default ) ]
49
+ #[ reflect( Debug , Hash , PartialEq , Default ) ]
50
50
struct UVec4 {
51
51
x: u32 ,
52
52
y: u32 ,
0 commit comments