godot-bevy 0.9.0

Bridge between Bevy ECS and Godot 4 for Rust-powered game development
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
use bevy::ecs::component::Component;

/// Marker components for Godot node types.
/// These enable type-safe ECS queries like: `Query<&GodotNodeHandle, With<Sprite2DMarker>>`
///
/// 🤖 This file is automatically generated by scripts/generate_godot_types.py
/// To regenerate: python scripts/generate_godot_types.py

// Base node type marker
#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct NodeMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct AcceptDialogMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct AnimatableBody2DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct AnimatableBody3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct AnimatedSprite2DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct AnimatedSprite3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct AnimationMixerMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct AnimationPlayerMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct AnimationTreeMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct Area2DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct Area3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct AspectRatioContainerMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct AudioListener2DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct AudioListener3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct AudioStreamPlayerMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct AudioStreamPlayer2DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct AudioStreamPlayer3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct BackBufferCopyMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct BaseButtonMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct Bone2DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct BoneAttachment3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct BoxContainerMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct ButtonMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct CPUParticles2DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct CPUParticles3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct CSGBox3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct CSGCombiner3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct CSGCylinder3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct CSGMesh3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct CSGPolygon3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct CSGPrimitive3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct CSGShape3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct CSGSphere3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct CSGTorus3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct Camera2DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct Camera3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct CanvasGroupMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct CanvasItemMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct CanvasLayerMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct CanvasModulateMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct CenterContainerMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct CharacterBody2DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct CharacterBody3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct CheckBoxMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct CheckButtonMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct CodeEditMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct CollisionObject2DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct CollisionObject3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct CollisionPolygon2DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct CollisionPolygon3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct CollisionShape2DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct CollisionShape3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct ColorPickerMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct ColorPickerButtonMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct ColorRectMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct ConeTwistJoint3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct ConfirmationDialogMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct ContainerMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct ControlMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct DampedSpringJoint2DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct DecalMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct DirectionalLight2DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct DirectionalLight3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct FileDialogMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct FileSystemDockMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct FlowContainerMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct FogVolumeMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct GPUParticles2DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct GPUParticles3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct GPUParticlesAttractor3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct GPUParticlesAttractorBox3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct GPUParticlesAttractorSphere3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct GPUParticlesAttractorVectorField3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct GPUParticlesCollision3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct GPUParticlesCollisionBox3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct GPUParticlesCollisionHeightField3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct GPUParticlesCollisionSDF3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct GPUParticlesCollisionSphere3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct Generic6DOFJoint3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct GeometryInstance3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct GraphEditMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct GraphElementMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct GraphFrameMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct GraphNodeMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct GridContainerMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct GridMapMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct GridMapEditorPluginMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct GrooveJoint2DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct HBoxContainerMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct HFlowContainerMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct HScrollBarMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct HSeparatorMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct HSliderMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct HSplitContainerMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct HTTPRequestMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct HingeJoint3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct InstancePlaceholderMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct ItemListMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct Joint2DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct Joint3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct LabelMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct Label3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct Light2DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct Light3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct LightOccluder2DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct LightmapGIMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct LightmapProbeMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct Line2DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct LineEditMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct LinkButtonMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct LookAtModifier3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct MarginContainerMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct Marker2DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct Marker3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct MenuBarMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct MenuButtonMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct MeshInstance2DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct MeshInstance3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct MultiMeshInstance2DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct MultiMeshInstance3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct MultiplayerSpawnerMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct MultiplayerSynchronizerMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct NavigationAgent2DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct NavigationAgent3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct NavigationLink2DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct NavigationLink3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct NavigationObstacle2DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct NavigationObstacle3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct NavigationRegion2DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct NavigationRegion3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct NinePatchRectMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct Node2DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct Node3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct OccluderInstance3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct OmniLight3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct OpenXRBindingModifierEditorMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct OpenXRCompositionLayerMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct OpenXRCompositionLayerCylinderMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct OpenXRCompositionLayerEquirectMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct OpenXRCompositionLayerQuadMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct OpenXRHandMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct OpenXRInteractionProfileEditorMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct OpenXRInteractionProfileEditorBaseMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct OpenXRVisibilityMaskMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct OptionButtonMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct PanelMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct PanelContainerMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct Parallax2DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct ParallaxBackgroundMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct ParallaxLayerMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct Path2DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct Path3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct PathFollow2DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct PathFollow3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct PhysicalBone2DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct PhysicalBone3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct PhysicalBoneSimulator3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct PhysicsBody2DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct PhysicsBody3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct PinJoint2DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct PinJoint3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct PointLight2DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct Polygon2DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct PopupMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct PopupMenuMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct PopupPanelMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct ProgressBarMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct RangeMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct RayCast2DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct RayCast3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct ReferenceRectMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct ReflectionProbeMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct RemoteTransform2DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct RemoteTransform3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct ResourcePreloaderMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct RetargetModifier3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct RichTextLabelMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct RigidBody2DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct RigidBody3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct RootMotionViewMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct ScriptCreateDialogMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct ScrollBarMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct ScrollContainerMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct SeparatorMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct ShaderGlobalsOverrideMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct ShapeCast2DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct ShapeCast3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct Skeleton2DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct Skeleton3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct SkeletonIK3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct SkeletonModifier3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct SliderMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct SliderJoint3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct SoftBody3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct SpinBoxMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct SplitContainerMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct SpotLight3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct SpringArm3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct SpringBoneCollision3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct SpringBoneCollisionCapsule3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct SpringBoneCollisionPlane3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct SpringBoneCollisionSphere3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct SpringBoneSimulator3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct Sprite2DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct Sprite3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct SpriteBase3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct StaticBody2DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct StaticBody3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct StatusIndicatorMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct SubViewportMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct SubViewportContainerMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct TabBarMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct TabContainerMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct TextEditMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct TextureButtonMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct TextureProgressBarMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct TextureRectMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct TileMapMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct TileMapLayerMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct TimerMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct TouchScreenButtonMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct TreeMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct VBoxContainerMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct VFlowContainerMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct VScrollBarMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct VSeparatorMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct VSliderMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct VSplitContainerMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct VehicleBody3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct VehicleWheel3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct VideoStreamPlayerMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct ViewportMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct VisibleOnScreenEnabler2DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct VisibleOnScreenEnabler3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct VisibleOnScreenNotifier2DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct VisibleOnScreenNotifier3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct VisualInstance3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct VoxelGIMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct WindowMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct WorldEnvironmentMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct XRAnchor3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct XRBodyModifier3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct XRCamera3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct XRController3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct XRFaceModifier3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct XRHandModifier3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct XRNode3DMarker;

#[derive(Component, Debug, Clone, Copy, PartialEq, Eq)]
pub struct XROrigin3DMarker;