File tree Expand file tree Collapse file tree 1 file changed +15
-3
lines changed
godot-codegen/src/special_cases Expand file tree Collapse file tree 1 file changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -146,16 +146,24 @@ pub fn is_class_experimental(godot_class_name: &str) -> bool {
146
146
// Note: parameter can be a class or builtin name, but also something like "enum::AESContext.Mode".
147
147
148
148
// These classes are currently hardcoded, but the information is available in Godot's doc/classes directory.
149
- // The XML file contains a property <class name="NavigationMesh" ... is_experimental="true ">.
149
+ // The XML file contains a property <class name="NavigationMesh" ... experimental=" ">.
150
150
151
+ // Last update: 2024-09-15; Godot rev 6681f2563b99e14929a8acb27f4908fece398ef1.
151
152
match godot_class_name {
153
+ | "AudioSample"
154
+ | "AudioSamplePlayback"
155
+ | "Compositor"
156
+ | "CompositorEffect"
152
157
| "GraphEdit"
158
+ | "GraphElement"
159
+ | "GraphFrame"
153
160
| "GraphNode"
154
161
| "NavigationAgent2D"
155
162
| "NavigationAgent3D"
156
163
| "NavigationLink2D"
157
164
| "NavigationLink3D"
158
165
| "NavigationMesh"
166
+ | "NavigationMeshSourceGeometryData2D"
159
167
| "NavigationMeshSourceGeometryData3D"
160
168
| "NavigationObstacle2D"
161
169
| "NavigationObstacle3D"
@@ -168,6 +176,7 @@ pub fn is_class_experimental(godot_class_name: &str) -> bool {
168
176
| "NavigationRegion3D"
169
177
| "NavigationServer2D"
170
178
| "NavigationServer3D"
179
+ | "Parallax2D"
171
180
| "SkeletonModification2D"
172
181
| "SkeletonModification2DCCDIK"
173
182
| "SkeletonModification2DFABRIK"
@@ -178,8 +187,11 @@ pub fn is_class_experimental(godot_class_name: &str) -> bool {
178
187
| "SkeletonModification2DTwoBoneIK"
179
188
| "SkeletonModificationStack2D"
180
189
| "StreamPeerGZIP"
181
- | "TextureRect"
182
-
190
+ | "XRBodyModifier3D"
191
+ | "XRBodyTracker"
192
+ | "XRFaceModifier3D"
193
+ | "XRFaceTracker"
194
+
183
195
=> true , _ => false
184
196
}
185
197
}
You can’t perform that action at this time.
0 commit comments