@@ -13,15 +13,15 @@ impl_reflect_struct!(
13
13
}
14
14
) ;
15
15
impl_reflect_struct ! (
16
- #[ reflect( Debug , PartialEq , Serialize , Deserialize , Default ) ]
16
+ #[ reflect( Debug , 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 , Serialize , Deserialize , Default ) ]
24
+ #[ reflect( Debug , 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 , Serialize , Deserialize , Default ) ]
34
+ #[ reflect( Debug , 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 , Serialize , Deserialize , Default ) ]
41
+ #[ reflect( Debug , 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 , Serialize , Deserialize , Default ) ]
49
+ #[ reflect( Debug , PartialEq , Default ) ]
50
50
struct UVec4 {
51
51
x: u32 ,
52
52
y: u32 ,
@@ -56,30 +56,30 @@ impl_reflect_struct!(
56
56
) ;
57
57
58
58
impl_reflect_struct ! (
59
- #[ reflect( Debug , PartialEq , Serialize , Deserialize , Default ) ]
59
+ #[ reflect( Debug , PartialEq , Default ) ]
60
60
struct Vec2 {
61
61
x: f32 ,
62
62
y: f32 ,
63
63
}
64
64
) ;
65
65
impl_reflect_struct ! (
66
- #[ reflect( Debug , PartialEq , Serialize , Deserialize , Default ) ]
66
+ #[ reflect( Debug , PartialEq , Default ) ]
67
67
struct Vec3 {
68
68
x: f32 ,
69
69
y: f32 ,
70
70
z: f32 ,
71
71
}
72
72
) ;
73
73
impl_reflect_struct ! (
74
- #[ reflect( Debug , PartialEq , Serialize , Deserialize , Default ) ]
74
+ #[ reflect( Debug , PartialEq , Default ) ]
75
75
struct Vec3A {
76
76
x: f32 ,
77
77
y: f32 ,
78
78
z: f32 ,
79
79
}
80
80
) ;
81
81
impl_reflect_struct ! (
82
- #[ reflect( Debug , PartialEq , Serialize , Deserialize , Default ) ]
82
+ #[ reflect( Debug , PartialEq , Default ) ]
83
83
struct Vec4 {
84
84
x: f32 ,
85
85
y: f32 ,
@@ -89,22 +89,22 @@ impl_reflect_struct!(
89
89
) ;
90
90
91
91
impl_reflect_struct ! (
92
- #[ reflect( Debug , PartialEq , Serialize , Deserialize , Default ) ]
92
+ #[ reflect( Debug , PartialEq , Default ) ]
93
93
struct DVec2 {
94
94
x: f64 ,
95
95
y: f64 ,
96
96
}
97
97
) ;
98
98
impl_reflect_struct ! (
99
- #[ reflect( Debug , PartialEq , Serialize , Deserialize , Default ) ]
99
+ #[ reflect( Debug , PartialEq , Default ) ]
100
100
struct DVec3 {
101
101
x: f64 ,
102
102
y: f64 ,
103
103
z: f64 ,
104
104
}
105
105
) ;
106
106
impl_reflect_struct ! (
107
- #[ reflect( Debug , PartialEq , Serialize , Deserialize , Default ) ]
107
+ #[ reflect( Debug , PartialEq , Default ) ]
108
108
struct DVec4 {
109
109
x: f64 ,
110
110
y: f64 ,
@@ -114,15 +114,15 @@ impl_reflect_struct!(
114
114
) ;
115
115
116
116
impl_reflect_struct ! (
117
- #[ reflect( Debug , PartialEq , Serialize , Deserialize , Default ) ]
117
+ #[ reflect( Debug , PartialEq , Default ) ]
118
118
struct Mat3 {
119
119
x_axis: Vec3 ,
120
120
y_axis: Vec3 ,
121
121
z_axis: Vec3 ,
122
122
}
123
123
) ;
124
124
impl_reflect_struct ! (
125
- #[ reflect( Debug , PartialEq , Serialize , Deserialize , Default ) ]
125
+ #[ reflect( Debug , PartialEq , Default ) ]
126
126
struct Mat4 {
127
127
x_axis: Vec4 ,
128
128
y_axis: Vec4 ,
@@ -132,15 +132,15 @@ impl_reflect_struct!(
132
132
) ;
133
133
134
134
impl_reflect_struct ! (
135
- #[ reflect( Debug , PartialEq , Serialize , Deserialize , Default ) ]
135
+ #[ reflect( Debug , PartialEq , Default ) ]
136
136
struct DMat3 {
137
137
x_axis: DVec3 ,
138
138
y_axis: DVec3 ,
139
139
z_axis: DVec3 ,
140
140
}
141
141
) ;
142
142
impl_reflect_struct ! (
143
- #[ reflect( Debug , PartialEq , Serialize , Deserialize , Default ) ]
143
+ #[ reflect( Debug , PartialEq , Default ) ]
144
144
struct DMat4 {
145
145
x_axis: DVec4 ,
146
146
y_axis: DVec4 ,
0 commit comments