API Coverage¶
Generated by python3 scripts/api_wrapper_coverage.py --markdown docs/contributing/api-coverage.md.
This page distinguishes generator coverage from promoted source coverage. Generator coverage is the practical API reach for upcoming wrapper promotion; promoted coverage only counts wrappers currently checked into src/main/kotlin/net/multigesture/kanama/api.
Generator Summary¶
Generated drafts are emitted to build/wrapper-generator/drafts during local runs. A small allowlisted set is promoted into source and checked for reproducibility.
| Metric | Count | Coverage |
|---|---|---|
| API classes | 1036 | |
| Classes with generated output | 845 | ██████████░░ 81.6% |
| Classes with complete method generation | 761 | █████████░░░ 73.5% |
| Methods generated | 15332/16822 (91.1%) | ███████████░ 91.1% |
| Methods skipped | 1490 | |
| Properties generated | 4090/4162 (98.3%) | ████████████ 98.3% |
| Signals generated | 503/503 (100.0%) | ████████████ 100.0% |
Reading the numbers above: "Methods generated" counts against all methods in extension_api.json, including the 1437 engine virtuals — which are deliberately not emitted as callable wrappers (a script overrides them via @OverrideVirtual) — and the documented by-design skips (root-Object policy methods, RefCounted lifetime, the Dictionary passthrough revert). Callable-method coverage is the Promoted Source Summary below; a sub-100% figure here is not unfinished work.
See Wrapper Generator Report for skip categories, missing helper shapes, and complete generated classes.
Promoted Source Summary¶
These numbers count only checked-in Kotlin API wrappers. Class coverage may include shell wrappers for Godot extension points whose public callable surface is virtual-only; method coverage counts promoted callable wrappers.
Rows marked inherited only are promoted wrappers whose Godot class declares no own methods in extension_api.json; behavior comes from their parent wrapper.
- Classes: 1036 / 1036
████████████100.0% - Methods: 15374 / 15385
████████████99.9% (callable methods; engine virtuals excluded — see below)
Per-Platform Class Sets¶
Every platform tree is held to check_full_drift_gate (committed == fresh regen; see wrapper-maintenance.md).
- Desktop: 988 generated classes + 47 hand-shaped policy classes. Android reuses the desktop sources (no separate tree).
- iOS: 1013 generated classes — full desktop-equivalent breadth (task 30) — plus 8 hand-shaped policy classes (
IOS_HANDSHAPED: generated base + static-dispatch/byte-array/factory hand sugar, snowplow enablement) and 12 hand-written collision classes (IOS_HANDWRITTEN_COLLISION_CLASSES). The only classes not emitted on iOS are the documentedIOS_UNSUPPORTED_CLASSES:DirAccess,MethodTweener. Per-method iOS skips remain conservative (un-audited marshalling shapes are skipped with report entries, never stubbed).
Virtual Methods¶
extension_api.json declares 1437 engine virtual methods (the _* callbacks). These are not wrapped as callable methods — a script overrides them with @OverrideVirtual (Phase 5), where the Kotlin function name is the virtual name (GDScript-style fun _draw()). The processor validates each override against a generated signature table (scripts/generate_virtual_signature_table.py, all virtuals) and dispatches it on both targets. They are reported here separately so they neither dilute callable-method coverage nor count as wrapper gaps. Practical marshalling bounds (tasks 13 + 29): desktop/Android cover every Variant-expressible return family — the audited scalar/POD shapes, String, all Packed arrays, Dictionary (Map<String, Any?>), generic/typed Array (List<Any?>), RID, Rect2, AABB, Transform2D, Transform3D, Projection, and Variant (Any?); the only excluded returns are the 6 raw-pointer virtuals (void*, const Glyph*), which are not Variant-expressible by design (see wrapper-maintenance.md). iOS value-returns cover Bool/Int/Float/Vector2/Vector2i/Vector3/String/RID, all fixed-element Packed arrays, PackedStringArray, Dictionary, generic Array, and Variant returns over that audited inner-type set (unaudited inner types serialize as nil on iOS); the Rect2/AABB/Transform2D/Transform3D/Projection returns stay desktop/Android-only for now (by design, wrapper-maintenance.md).
Promoted Source By Area¶
| Area | Classes | Class Coverage | Methods | Method Coverage |
|---|---|---|---|---|
| Core | 226/226 | ████████████ 100.0% |
2963/2970 | ████████████ 99.8% |
| Scene | 26/26 | ████████████ 100.0% |
923/923 | ████████████ 100.0% |
| Resources | 306/306 | ████████████ 100.0% |
2886/2891 | ████████████ 99.8% |
| Input | 20/20 | ████████████ 100.0% |
238/238 | ████████████ 100.0% |
| UI | 69/69 | ████████████ 100.0% |
1742/1741 | ████████████ 100.1% |
| 2D | 112/112 | ████████████ 100.0% |
2030/2030 | ████████████ 100.0% |
| 3D | 171/171 | ████████████ 100.0% |
3000/3000 | ████████████ 100.0% |
| Physics | 6/6 | ████████████ 100.0% |
55/55 | ████████████ 100.0% |
| Rendering | 24/24 | ████████████ 100.0% |
794/794 | ████████████ 100.0% |
| Audio | 14/14 | ████████████ 100.0% |
232/232 | ████████████ 100.0% |
| Multiplayer | 8/8 | ████████████ 100.0% |
66/66 | ████████████ 100.0% |
| Editor | 54/54 | ████████████ 100.0% |
445/445 | ████████████ 100.0% |
Demo Port Signals¶
These notes summarize wrapper feedback from real ports. They are contextual signals, not a ranking.
- GDQuest third-person controller: the remaining friction is mostly port ergonomics around nested node access, signal callbacks, and scene-script parity rather than missing core 3D wrappers.
- Official TPS demo: core classes now have wrappers; the main policy-heavy areas are RPC annotations,
MultiplayerSynchronizerscripts, threadedResourceLoaderprogress arrays, signal.bind(...)usage, and headless/multiplayer smoke strategy. - Godot official demo-projects: small demos are most useful when they exercise a distinct behavior or policy area.
Promoted Source Wrapped Classes¶
| Class | Area | Methods | Coverage |
|---|---|---|---|
AESContext |
Core | 4/4 | ████████ 100.0% |
AStar2D |
2D | 25/25 | ████████ 100.0% |
AStar3D |
3D | 25/25 | ████████ 100.0% |
AStarGrid2D |
2D | 33/33 | ████████ 100.0% |
AcceptDialog |
Scene | 16/16 | ████████ 100.0% |
AccessibilityServer |
Core | 75/75 | ████████ 100.0% |
AimModifier3D |
3D | 10/10 | ████████ 100.0% |
AnimatableBody2D |
2D | 2/2 | ████████ 100.0% |
AnimatableBody3D |
3D | 2/2 | ████████ 100.0% |
AnimatedSprite2D |
2D | 27/27 | ████████ 100.0% |
AnimatedSprite3D |
3D | 19/19 | ████████ 100.0% |
AnimatedTexture |
2D | 14/14 | ████████ 100.0% |
Animation |
Resources | 85/85 | ████████ 100.0% |
AnimationLibrary |
Resources | 7/7 | ████████ 100.0% |
AnimationMixer |
Scene | 40/40 | ████████ 100.0% |
AnimationNode |
Resources | 17/17 | ████████ 100.0% |
AnimationNodeAdd2 |
Resources | 0/0 | inherited only |
AnimationNodeAdd3 |
Resources | 0/0 | inherited only |
AnimationNodeAnimation |
Resources | 16/16 | ████████ 100.0% |
AnimationNodeBlend2 |
Resources | 0/0 | inherited only |
AnimationNodeBlend3 |
Resources | 0/0 | inherited only |
AnimationNodeBlendSpace1D |
Resources | 27/27 | ████████ 100.0% |
AnimationNodeBlendSpace2D |
2D | 35/35 | ████████ 100.0% |
AnimationNodeBlendTree |
Resources | 12/12 | ████████ 100.0% |
AnimationNodeExtension |
Resources | 2/2 | ████████ 100.0% |
AnimationNodeOneShot |
Resources | 20/20 | ████████ 100.0% |
AnimationNodeOutput |
Resources | 0/0 | inherited only |
AnimationNodeStateMachine |
Resources | 26/26 | ████████ 100.0% |
AnimationNodeStateMachinePlayback |
Resources | 14/14 | ████████ 100.0% |
AnimationNodeStateMachineTransition |
Resources | 18/18 | ████████ 100.0% |
AnimationNodeSub2 |
Resources | 0/0 | inherited only |
AnimationNodeSync |
Resources | 2/2 | ████████ 100.0% |
AnimationNodeTimeScale |
Resources | 0/0 | inherited only |
AnimationNodeTimeSeek |
Resources | 2/2 | ████████ 100.0% |
AnimationNodeTransition |
Resources | 13/13 | ████████ 100.0% |
AnimationPlayer |
Scene | 54/54 | ████████ 100.0% |
AnimationRootNode |
Resources | 0/0 | inherited only |
AnimationTree |
Scene | 8/8 | ████████ 100.0% |
Area2D |
2D | 36/36 | ████████ 100.0% |
Area3D |
3D | 50/50 | ████████ 100.0% |
AreaLight3D |
3D | 6/6 | ████████ 100.0% |
ArrayMesh |
Resources | 26/26 | ████████ 100.0% |
ArrayOccluder3D |
3D | 3/3 | ████████ 100.0% |
AspectRatioContainer |
UI | 8/8 | ████████ 100.0% |
AtlasTexture |
2D | 8/8 | ████████ 100.0% |
AudioBusLayout |
Resources | 0/0 | inherited only |
AudioEffect |
Resources | 0/0 | inherited only |
AudioEffectAmplify |
Resources | 4/4 | ████████ 100.0% |
AudioEffectBandLimitFilter |
Resources | 0/0 | inherited only |
AudioEffectBandPassFilter |
Resources | 0/0 | inherited only |
AudioEffectCapture |
Resources | 9/9 | ████████ 100.0% |
AudioEffectChorus |
Resources | 18/18 | ████████ 100.0% |
AudioEffectCompressor |
Resources | 14/14 | ████████ 100.0% |
AudioEffectDelay |
Resources | 26/26 | ████████ 100.0% |
AudioEffectDistortion |
Resources | 10/10 | ████████ 100.0% |
AudioEffectEQ |
Resources | 3/3 | ████████ 100.0% |
AudioEffectEQ10 |
Resources | 0/0 | inherited only |
AudioEffectEQ21 |
Resources | 0/0 | inherited only |
AudioEffectEQ6 |
Resources | 0/0 | inherited only |
AudioEffectFilter |
Resources | 8/8 | ████████ 100.0% |
AudioEffectHardLimiter |
Resources | 6/6 | ████████ 100.0% |
AudioEffectHighPassFilter |
Resources | 0/0 | inherited only |
AudioEffectHighShelfFilter |
Resources | 0/0 | inherited only |
AudioEffectInstance |
Core | 0/0 | inherited only |
AudioEffectLimiter |
Resources | 8/8 | ████████ 100.0% |
AudioEffectLowPassFilter |
Resources | 0/0 | inherited only |
AudioEffectLowShelfFilter |
Resources | 0/0 | inherited only |
AudioEffectNotchFilter |
Resources | 0/0 | inherited only |
AudioEffectPanner |
Resources | 2/2 | ████████ 100.0% |
AudioEffectPhaser |
Resources | 10/10 | ████████ 100.0% |
AudioEffectPitchShift |
Resources | 6/6 | ████████ 100.0% |
AudioEffectRecord |
Resources | 5/5 | ████████ 100.0% |
AudioEffectReverb |
Resources | 16/16 | ████████ 100.0% |
AudioEffectSpectrumAnalyzer |
Resources | 4/4 | ████████ 100.0% |
AudioEffectSpectrumAnalyzerInstance |
Core | 1/1 | ████████ 100.0% |
AudioEffectStereoEnhance |
Resources | 6/6 | ████████ 100.0% |
AudioListener2D |
2D | 3/3 | ████████ 100.0% |
AudioListener3D |
3D | 6/6 | ████████ 100.0% |
AudioSample |
Core | 0/0 | inherited only |
AudioSamplePlayback |
Core | 0/0 | inherited only |
AudioServer |
Core | 57/57 | ████████ 100.0% |
AudioStream |
Audio | 6/6 | ████████ 100.0% |
AudioStreamGenerator |
Audio | 6/6 | ████████ 100.0% |
AudioStreamGeneratorPlayback |
Core | 6/6 | ████████ 100.0% |
AudioStreamInteractive |
Audio | 23/23 | ████████ 100.0% |
AudioStreamMP3 |
Audio | 14/14 | ████████ 100.0% |
AudioStreamMicrophone |
Audio | 0/0 | inherited only |
AudioStreamOggVorbis |
Audio | 16/16 | ████████ 100.0% |
AudioStreamPlayback |
Core | 9/9 | ████████ 100.0% |
AudioStreamPlaybackInteractive |
Core | 3/3 | ████████ 100.0% |
AudioStreamPlaybackOggVorbis |
Core | 0/0 | inherited only |
AudioStreamPlaybackPlaylist |
Core | 0/0 | inherited only |
AudioStreamPlaybackPolyphonic |
Core | 5/5 | ████████ 100.0% |
AudioStreamPlaybackResampled |
Core | 1/1 | ████████ 100.0% |
AudioStreamPlaybackSynchronized |
Core | 0/0 | inherited only |
AudioStreamPlayer |
Audio | 28/28 | ████████ 100.0% |
AudioStreamPlayer2D |
Audio | 34/34 | ████████ 100.0% |
AudioStreamPlayer3D |
Audio | 50/50 | ████████ 100.0% |
AudioStreamPlaylist |
Audio | 11/11 | ████████ 100.0% |
AudioStreamPolyphonic |
Audio | 2/2 | ████████ 100.0% |
AudioStreamRandomizer |
Audio | 17/17 | ████████ 100.0% |
AudioStreamSynchronized |
Audio | 6/6 | ████████ 100.0% |
AudioStreamWAV |
Audio | 19/19 | ████████ 100.0% |
AwaitTweener |
Core | 1/1 | ████████ 100.0% |
BackBufferCopy |
2D | 4/4 | ████████ 100.0% |
BaseButton |
UI | 23/23 | ████████ 100.0% |
BaseMaterial3D |
3D | 154/154 | ████████ 100.0% |
BitMap |
Resources | 13/13 | ████████ 100.0% |
BlitMaterial |
Resources | 2/2 | ████████ 100.0% |
Bone2D |
2D | 11/11 | ████████ 100.0% |
BoneAttachment3D |
3D | 12/12 | ████████ 100.0% |
BoneConstraint3D |
3D | 17/17 | ████████ 100.0% |
BoneMap |
Resources | 5/5 | ████████ 100.0% |
BoneTwistDisperser3D |
3D | 34/34 | ████████ 100.0% |
BoxContainer |
UI | 5/5 | ████████ 100.0% |
BoxMesh |
Resources | 8/8 | ████████ 100.0% |
BoxOccluder3D |
3D | 2/2 | ████████ 100.0% |
BoxShape3D |
3D | 2/2 | ████████ 100.0% |
Button |
UI | 26/26 | ████████ 100.0% |
ButtonGroup |
Resources | 4/4 | ████████ 100.0% |
CCDIK3D |
3D | 0/0 | inherited only |
CPUParticles2D |
2D | 77/77 | ████████ 100.0% |
CPUParticles3D |
3D | 90/90 | ████████ 100.0% |
CSGBox3D |
3D | 4/4 | ████████ 100.0% |
CSGCombiner3D |
3D | 0/0 | inherited only |
CSGCylinder3D |
3D | 12/12 | ████████ 100.0% |
CSGMesh3D |
3D | 4/4 | ████████ 100.0% |
CSGPolygon3D |
3D | 34/34 | ████████ 100.0% |
CSGPrimitive3D |
3D | 2/2 | ████████ 100.0% |
CSGShape3D |
3D | 26/26 | ████████ 100.0% |
CSGSphere3D |
3D | 10/10 | ████████ 100.0% |
CSGTorus3D |
3D | 12/12 | ████████ 100.0% |
CallbackTweener |
Core | 1/1 | ████████ 100.0% |
Camera2D |
2D | 52/52 | ████████ 100.0% |
Camera3D |
3D | 49/49 | ████████ 100.0% |
CameraAttributes |
Resources | 10/10 | ████████ 100.0% |
CameraAttributesPhysical |
Resources | 17/17 | ████████ 100.0% |
CameraAttributesPractical |
Resources | 18/18 | ████████ 100.0% |
CameraFeed |
Core | 17/17 | ████████ 100.0% |
CameraServer |
Core | 7/7 | ████████ 100.0% |
CameraTexture |
2D | 6/6 | ████████ 100.0% |
CanvasGroup |
2D | 6/6 | ████████ 100.0% |
CanvasItem |
Scene | 93/93 | ████████ 100.0% |
CanvasItemMaterial |
Resources | 12/12 | ████████ 100.0% |
CanvasLayer |
Scene | 22/22 | ████████ 100.0% |
CanvasModulate |
2D | 2/2 | ████████ 100.0% |
CanvasTexture |
2D | 14/14 | ████████ 100.0% |
CapsuleMesh |
Resources | 8/8 | ████████ 100.0% |
CapsuleShape2D |
2D | 6/6 | ████████ 100.0% |
CapsuleShape3D |
3D | 6/6 | ████████ 100.0% |
CenterContainer |
UI | 2/2 | ████████ 100.0% |
ChainIK3D |
3D | 17/17 | ████████ 100.0% |
CharFXTransform |
Core | 26/26 | ████████ 100.0% |
CharacterBody2D |
2D | 48/48 | ████████ 100.0% |
CharacterBody3D |
3D | 49/49 | ████████ 100.0% |
CheckBox |
UI | 0/0 | inherited only |
CheckButton |
UI | 0/0 | inherited only |
CircleShape2D |
2D | 2/2 | ████████ 100.0% |
ClassDB |
Core | 30/30 | ████████ 100.0% |
CodeEdit |
UI | 114/114 | ████████ 100.0% |
CodeHighlighter |
Resources | 28/28 | ████████ 100.0% |
CollisionObject2D |
2D | 36/36 | ████████ 100.0% |
CollisionObject3D |
3D | 32/32 | ████████ 100.0% |
CollisionPolygon2D |
2D | 12/12 | ████████ 100.0% |
CollisionPolygon3D |
3D | 12/12 | ████████ 100.0% |
CollisionShape2D |
2D | 12/12 | ████████ 100.0% |
CollisionShape3D |
3D | 10/10 | ████████ 100.0% |
ColorPalette |
Resources | 2/2 | ████████ 100.0% |
ColorPicker |
UI | 30/30 | ████████ 100.0% |
ColorPickerButton |
UI | 8/8 | ████████ 100.0% |
ColorRect |
UI | 2/2 | ████████ 100.0% |
Compositor |
Resources | 2/2 | ████████ 100.0% |
CompositorEffect |
Resources | 14/14 | ████████ 100.0% |
CompressedCubemap |
Resources | 0/0 | inherited only |
CompressedCubemapArray |
Resources | 0/0 | inherited only |
CompressedTexture2D |
2D | 2/2 | ████████ 100.0% |
CompressedTexture2DArray |
Resources | 0/0 | inherited only |
CompressedTexture3D |
3D | 2/2 | ████████ 100.0% |
CompressedTextureLayered |
Resources | 2/2 | ████████ 100.0% |
ConcavePolygonShape2D |
2D | 2/2 | ████████ 100.0% |
ConcavePolygonShape3D |
3D | 4/4 | ████████ 100.0% |
ConeTwistJoint3D |
3D | 2/2 | ████████ 100.0% |
ConfigFile |
Core | 17/17 | ████████ 100.0% |
ConfirmationDialog |
Scene | 3/3 | ████████ 100.0% |
Container |
UI | 4/4 | ████████ 100.0% |
Control |
UI | 181/181 | ████████ 100.0% |
ConvertTransformModifier3D |
3D | 20/20 | ████████ 100.0% |
ConvexPolygonShape2D |
2D | 3/3 | ████████ 100.0% |
ConvexPolygonShape3D |
3D | 2/2 | ████████ 100.0% |
CopyTransformModifier3D |
3D | 28/28 | ████████ 100.0% |
Crypto |
Core | 9/9 | ████████ 100.0% |
CryptoKey |
Resources | 5/5 | ████████ 100.0% |
Cubemap |
Resources | 1/1 | ████████ 100.0% |
CubemapArray |
Resources | 1/1 | ████████ 100.0% |
Curve |
Resources | 32/32 | ████████ 100.0% |
Curve2D |
2D | 23/23 | ████████ 100.0% |
Curve3D |
3D | 32/32 | ████████ 100.0% |
CurveTexture |
2D | 5/5 | ████████ 100.0% |
CurveXYZTexture |
2D | 7/7 | ████████ 100.0% |
CylinderMesh |
Resources | 14/14 | ████████ 100.0% |
CylinderShape3D |
3D | 4/4 | ████████ 100.0% |
DPITexture |
2D | 15/15 | ████████ 100.0% |
DTLSServer |
Core | 2/2 | ████████ 100.0% |
DampedSpringJoint2D |
2D | 8/8 | ████████ 100.0% |
Decal |
3D | 24/24 | ████████ 100.0% |
DirAccess |
Core | 41/42 | ████████ 97.6% |
DirectionalLight2D |
2D | 2/2 | ████████ 100.0% |
DirectionalLight3D |
3D | 6/6 | ████████ 100.0% |
DisplayServer |
Core | 287/287 | ████████ 100.0% |
DrawableTexture2D |
2D | 7/7 | ████████ 100.0% |
ENetConnection |
Core | 18/18 | ████████ 100.0% |
ENetMultiplayerPeer |
Multiplayer | 7/7 | ████████ 100.0% |
ENetPacketPeer |
Core | 16/16 | ████████ 100.0% |
EditorCommandPalette |
Editor | 2/2 | ████████ 100.0% |
EditorContextMenuPlugin |
Editor | 4/4 | ████████ 100.0% |
EditorDebuggerPlugin |
Editor | 2/2 | ████████ 100.0% |
EditorDebuggerSession |
Editor | 8/8 | ████████ 100.0% |
EditorDock |
Editor | 27/27 | ████████ 100.0% |
EditorExportPlatform |
Editor | 27/27 | ████████ 100.0% |
EditorExportPlatformAndroid |
Editor | 0/0 | inherited only |
EditorExportPlatformAppleEmbedded |
Editor | 0/0 | inherited only |
EditorExportPlatformExtension |
Editor | 4/4 | ████████ 100.0% |
EditorExportPlatformIOS |
Editor | 0/0 | inherited only |
EditorExportPlatformLinuxBSD |
Editor | 0/0 | inherited only |
EditorExportPlatformMacOS |
Editor | 0/0 | inherited only |
EditorExportPlatformPC |
Editor | 0/0 | inherited only |
EditorExportPlatformVisionOS |
Editor | 0/0 | inherited only |
EditorExportPlatformWeb |
Editor | 0/0 | inherited only |
EditorExportPlatformWindows |
Editor | 0/0 | inherited only |
EditorExportPlugin |
Editor | 21/21 | ████████ 100.0% |
EditorExportPreset |
Editor | 25/25 | ████████ 100.0% |
EditorFeatureProfile |
Editor | 11/11 | ████████ 100.0% |
EditorFileDialog |
Editor | 3/3 | ████████ 100.0% |
EditorFileSystem |
Editor | 10/10 | ████████ 100.0% |
EditorFileSystemDirectory |
Editor | 14/14 | ████████ 100.0% |
EditorFileSystemImportFormatSupportQuery |
Editor | 0/0 | inherited only |
EditorImportPlugin |
Editor | 1/1 | ████████ 100.0% |
EditorInspector |
Editor | 8/8 | ████████ 100.0% |
EditorInspectorPlugin |
Editor | 3/3 | ████████ 100.0% |
EditorInterface |
Editor | 71/71 | ████████ 100.0% |
EditorNode3DGizmo |
Editor | 13/13 | ████████ 100.0% |
EditorNode3DGizmoPlugin |
Editor | 5/5 | ████████ 100.0% |
EditorPaths |
Editor | 6/6 | ████████ 100.0% |
EditorPlugin |
Editor | 51/51 | ████████ 100.0% |
EditorProperty |
Editor | 35/35 | ████████ 100.0% |
EditorResourceConversionPlugin |
Editor | 0/0 | inherited only |
EditorResourcePicker |
Editor | 10/10 | ████████ 100.0% |
EditorResourcePreview |
Editor | 5/5 | ████████ 100.0% |
EditorResourcePreviewGenerator |
Editor | 1/1 | ████████ 100.0% |
EditorResourceTooltipPlugin |
Editor | 1/1 | ████████ 100.0% |
EditorSceneFormatImporter |
Editor | 2/2 | ████████ 100.0% |
EditorSceneFormatImporterBlend |
Editor | 0/0 | inherited only |
EditorSceneFormatImporterFBX2GLTF |
Editor | 0/0 | inherited only |
EditorSceneFormatImporterGLTF |
Editor | 0/0 | inherited only |
EditorSceneFormatImporterUFBX |
Editor | 0/0 | inherited only |
EditorScenePostImport |
Editor | 1/1 | ████████ 100.0% |
EditorScenePostImportPlugin |
Editor | 3/3 | ████████ 100.0% |
EditorScript |
Editor | 3/3 | ████████ 100.0% |
EditorScriptPicker |
Editor | 2/2 | ████████ 100.0% |
EditorSelection |
Editor | 6/6 | ████████ 100.0% |
EditorSettings |
Editor | 22/22 | ████████ 100.0% |
EditorSpinSlider |
Editor | 16/16 | ████████ 100.0% |
EditorSyntaxHighlighter |
Editor | 0/0 | inherited only |
EditorToaster |
Editor | 1/1 | ████████ 100.0% |
EditorTranslationParserPlugin |
Editor | 0/0 | inherited only |
EditorUndoRedoManager |
Editor | 13/13 | ████████ 100.0% |
EditorVCSInterface |
Editor | 8/8 | ████████ 100.0% |
EncodedObjectAsID |
Core | 2/2 | ████████ 100.0% |
Engine |
Core | 41/41 | ████████ 100.0% |
EngineDebugger |
Core | 23/23 | ████████ 100.0% |
EngineProfiler |
Core | 0/0 | inherited only |
Environment |
Resources | 188/188 | ████████ 100.0% |
Expression |
Core | 4/4 | ████████ 100.0% |
ExternalTexture |
2D | 3/3 | ████████ 100.0% |
FABRIK3D |
3D | 0/0 | inherited only |
FBXDocument |
Resources | 0/0 | inherited only |
FBXState |
Resources | 2/2 | ████████ 100.0% |
FastNoiseLite |
Resources | 42/42 | ████████ 100.0% |
FileAccess |
Core | 68/68 | ████████ 100.0% |
FileDialog |
Scene | 50/50 | ████████ 100.0% |
FileSystemDock |
UI | 3/3 | ████████ 100.0% |
FlowContainer |
UI | 9/9 | ████████ 100.0% |
FogMaterial |
Resources | 12/12 | ████████ 100.0% |
FogVolume |
3D | 6/6 | ████████ 100.0% |
FoldableContainer |
UI | 20/20 | ████████ 100.0% |
FoldableGroup |
Resources | 4/4 | ████████ 100.0% |
Font |
Resources | 34/37 | ███████░ 91.9% |
FontFile |
Resources | 106/106 | ████████ 100.0% |
FontVariation |
Resources | 18/18 | ████████ 100.0% |
FramebufferCacheRD |
Core | 1/1 | ████████ 100.0% |
GDExtension |
Resources | 2/2 | ████████ 100.0% |
GDExtensionManager |
Core | 7/7 | ████████ 100.0% |
GDScript |
Resources | 1/1 | ████████ 100.0% |
GDScriptLanguageProtocol |
Core | 9/9 | ████████ 100.0% |
GDScriptSyntaxHighlighter |
Resources | 0/0 | inherited only |
GDScriptTextDocument |
Core | 19/21 | ███████░ 90.5% |
GDScriptWorkspace |
Core | 8/8 | ████████ 100.0% |
GLTFAccessor |
Resources | 32/32 | ████████ 100.0% |
GLTFAnimation |
Resources | 6/6 | ████████ 100.0% |
GLTFBufferView |
Resources | 15/15 | ████████ 100.0% |
GLTFCamera |
Resources | 14/14 | ████████ 100.0% |
GLTFDocument |
Resources | 25/25 | ████████ 100.0% |
GLTFDocumentExtension |
Resources | 0/0 | inherited only |
GLTFDocumentExtensionConvertImporterMesh |
Resources | 0/0 | inherited only |
GLTFLight |
Resources | 18/18 | ████████ 100.0% |
GLTFMesh |
Resources | 10/10 | ████████ 100.0% |
GLTFNode |
Resources | 32/32 | ████████ 100.0% |
GLTFObjectModelProperty |
Core | 18/18 | ████████ 100.0% |
GLTFPhysicsBody |
Physics | 20/20 | ████████ 100.0% |
GLTFPhysicsShape |
Physics | 20/20 | ████████ 100.0% |
GLTFSkeleton |
Resources | 11/11 | ████████ 100.0% |
GLTFSkin |
Resources | 20/20 | ████████ 100.0% |
GLTFSpecGloss |
Resources | 10/10 | ████████ 100.0% |
GLTFState |
Resources | 71/71 | ████████ 100.0% |
GLTFTexture |
Resources | 4/4 | ████████ 100.0% |
GLTFTextureSampler |
Resources | 8/8 | ████████ 100.0% |
GPUParticles2D |
2D | 57/57 | ████████ 100.0% |
GPUParticles3D |
3D | 63/63 | ████████ 100.0% |
GPUParticlesAttractor3D |
3D | 8/8 | ████████ 100.0% |
GPUParticlesAttractorBox3D |
3D | 2/2 | ████████ 100.0% |
GPUParticlesAttractorSphere3D |
3D | 2/2 | ████████ 100.0% |
GPUParticlesAttractorVectorField3D |
3D | 4/4 | ████████ 100.0% |
GPUParticlesCollision3D |
3D | 2/2 | ████████ 100.0% |
GPUParticlesCollisionBox3D |
3D | 2/2 | ████████ 100.0% |
GPUParticlesCollisionHeightField3D |
3D | 12/12 | ████████ 100.0% |
GPUParticlesCollisionSDF3D |
3D | 12/12 | ████████ 100.0% |
GPUParticlesCollisionSphere3D |
3D | 2/2 | ████████ 100.0% |
Generic6DOFJoint3D |
3D | 12/12 | ████████ 100.0% |
Geometry2D |
2D | 24/24 | ████████ 100.0% |
Geometry3D |
3D | 15/15 | ████████ 100.0% |
GeometryInstance3D |
3D | 34/34 | ████████ 100.0% |
GodotInstance |
Core | 7/7 | ████████ 100.0% |
Gradient |
Resources | 17/17 | ████████ 100.0% |
GradientTexture1D |
2D | 5/5 | ████████ 100.0% |
GradientTexture2D |
2D | 14/14 | ████████ 100.0% |
GraphEdit |
UI | 75/75 | ████████ 100.0% |
GraphElement |
UI | 12/12 | ████████ 100.0% |
GraphFrame |
UI | 13/13 | ████████ 100.0% |
GraphNode |
UI | 42/42 | ████████ 100.0% |
GridContainer |
UI | 2/2 | ████████ 100.0% |
GridMap |
3D | 56/56 | ████████ 100.0% |
GridMapEditorPlugin |
Scene | 8/8 | ████████ 100.0% |
GrooveJoint2D |
2D | 4/4 | ████████ 100.0% |
HBoxContainer |
UI | 0/0 | inherited only |
HFlowContainer |
UI | 0/0 | inherited only |
HMACContext |
Core | 3/3 | ████████ 100.0% |
HScrollBar |
UI | 0/0 | inherited only |
HSeparator |
UI | 0/0 | inherited only |
HSlider |
UI | 0/0 | inherited only |
HSplitContainer |
UI | 0/0 | inherited only |
HTTPClient |
Core | 22/22 | ████████ 100.0% |
HTTPRequest |
Scene | 23/23 | ████████ 100.0% |
HashingContext |
Core | 3/3 | ████████ 100.0% |
HeightMapShape3D |
3D | 9/9 | ████████ 100.0% |
HingeJoint3D |
3D | 4/4 | ████████ 100.0% |
IKModifier3D |
3D | 6/6 | ████████ 100.0% |
IP |
Core | 10/10 | ████████ 100.0% |
Image |
Resources | 76/76 | ████████ 100.0% |
ImageFormatLoader |
Rendering | 0/0 | inherited only |
ImageFormatLoaderExtension |
Rendering | 2/2 | ████████ 100.0% |
ImageTexture |
2D | 4/4 | ████████ 100.0% |
ImageTexture3D |
3D | 2/2 | ████████ 100.0% |
ImageTextureLayered |
Resources | 2/2 | ████████ 100.0% |
ImmediateMesh |
Resources | 10/10 | ████████ 100.0% |
ImporterMesh |
Resources | 25/25 | ████████ 100.0% |
ImporterMeshInstance3D |
3D | 20/20 | ████████ 100.0% |
Input |
Input | 77/77 | ████████ 100.0% |
InputEvent |
Input | 15/15 | ████████ 100.0% |
InputEventAction |
Input | 7/7 | ████████ 100.0% |
InputEventFromWindow |
Input | 2/2 | ████████ 100.0% |
InputEventGesture |
Input | 2/2 | ████████ 100.0% |
InputEventJoypadButton |
Input | 5/5 | ████████ 100.0% |
InputEventJoypadMotion |
Input | 4/4 | ████████ 100.0% |
InputEventKey |
Input | 19/19 | ████████ 100.0% |
InputEventMIDI |
Input | 16/16 | ████████ 100.0% |
InputEventMagnifyGesture |
Input | 2/2 | ████████ 100.0% |
InputEventMouse |
Input | 6/6 | ████████ 100.0% |
InputEventMouseButton |
Input | 8/8 | ████████ 100.0% |
InputEventMouseMotion |
Input | 14/14 | ████████ 100.0% |
InputEventPanGesture |
Input | 2/2 | ████████ 100.0% |
InputEventScreenDrag |
Input | 18/18 | ████████ 100.0% |
InputEventScreenTouch |
Input | 8/8 | ████████ 100.0% |
InputEventShortcut |
Input | 2/2 | ████████ 100.0% |
InputEventWithModifiers |
Input | 12/12 | ████████ 100.0% |
InputMap |
Input | 14/14 | ████████ 100.0% |
InstancePlaceholder |
Scene | 3/3 | ████████ 100.0% |
IntervalTweener |
Core | 0/0 | inherited only |
ItemList |
UI | 85/85 | ████████ 100.0% |
IterateIK3D |
3D | 22/22 | ████████ 100.0% |
JNISingleton |
Core | 1/1 | ████████ 100.0% |
JSON |
Resources | 10/10 | ████████ 100.0% |
JSONRPC |
Core | 7/7 | ████████ 100.0% |
JacobianIK3D |
3D | 0/0 | inherited only |
JavaClass |
Core | 4/4 | ████████ 100.0% |
JavaClassWrapper |
Core | 4/4 | ████████ 100.0% |
JavaObject |
Core | 2/2 | ████████ 100.0% |
JavaScriptBridge |
Core | 10/10 | ████████ 100.0% |
JavaScriptObject |
Core | 0/0 | inherited only |
Joint2D |
2D | 9/9 | ████████ 100.0% |
Joint3D |
3D | 9/9 | ████████ 100.0% |
JointLimitation3D |
3D | 0/0 | inherited only |
JointLimitationCone3D |
3D | 2/2 | ████████ 100.0% |
KinematicCollision2D |
2D | 13/13 | ████████ 100.0% |
KinematicCollision3D |
3D | 14/14 | ████████ 100.0% |
Label |
UI | 49/49 | ████████ 100.0% |
Label3D |
3D | 61/61 | ████████ 100.0% |
LabelSettings |
Resources | 40/40 | ████████ 100.0% |
Light2D |
2D | 32/32 | ████████ 100.0% |
Light3D |
3D | 31/31 | ████████ 100.0% |
LightOccluder2D |
2D | 6/6 | ████████ 100.0% |
LightmapGI |
3D | 44/44 | ████████ 100.0% |
LightmapGIData |
Resources | 12/12 | ████████ 100.0% |
LightmapProbe |
3D | 0/0 | inherited only |
Lightmapper |
Rendering | 0/0 | inherited only |
LightmapperRD |
Rendering | 0/0 | inherited only |
LimitAngularVelocityModifier3D |
3D | 16/16 | ████████ 100.0% |
Line2D |
2D | 34/34 | ████████ 100.0% |
LineEdit |
UI | 97/97 | ████████ 100.0% |
LinkButton |
UI | 18/18 | ████████ 100.0% |
Logger |
Core | 0/0 | inherited only |
LookAtModifier3D |
3D | 63/63 | ████████ 100.0% |
MainLoop |
Core | 0/0 | inherited only |
MarginContainer |
UI | 0/0 | inherited only |
Marker2D |
2D | 2/2 | ████████ 100.0% |
Marker3D |
3D | 2/2 | ████████ 100.0% |
Marshalls |
Core | 6/6 | ████████ 100.0% |
Material |
Resources | 6/6 | ████████ 100.0% |
MenuBar |
UI | 24/24 | ████████ 100.0% |
MenuButton |
UI | 7/7 | ████████ 100.0% |
Mesh |
Resources | 14/14 | ████████ 100.0% |
MeshConvexDecompositionSettings |
Rendering | 26/26 | ████████ 100.0% |
MeshDataTool |
Rendering | 38/38 | ████████ 100.0% |
MeshInstance2D |
2D | 4/4 | ████████ 100.0% |
MeshInstance3D |
3D | 21/21 | ████████ 100.0% |
MeshLibrary |
Resources | 24/25 | ████████ 96.0% |
MeshTexture |
2D | 6/6 | ████████ 100.0% |
MethodTweener |
Core | 3/3 | ████████ 100.0% |
MissingNode |
Scene | 8/8 | ████████ 100.0% |
MissingResource |
Resources | 4/4 | ████████ 100.0% |
MobileVRInterface |
Core | 20/20 | ████████ 100.0% |
ModifierBoneTarget3D |
3D | 4/4 | ████████ 100.0% |
MovieWriter |
Core | 1/1 | ████████ 100.0% |
MultiMesh |
Resources | 30/30 | ████████ 100.0% |
MultiMeshInstance2D |
2D | 4/4 | ████████ 100.0% |
MultiMeshInstance3D |
3D | 2/2 | ████████ 100.0% |
MultiplayerAPI |
Multiplayer | 14/14 | ████████ 100.0% |
MultiplayerAPIExtension |
Multiplayer | 0/0 | inherited only |
MultiplayerPeer |
Multiplayer | 17/17 | ████████ 100.0% |
MultiplayerPeerExtension |
Multiplayer | 0/0 | inherited only |
MultiplayerSpawner |
Multiplayer | 11/11 | ████████ 100.0% |
MultiplayerSynchronizer |
Multiplayer | 17/17 | ████████ 100.0% |
Mutex |
Core | 3/3 | ████████ 100.0% |
NativeMenu |
Core | 69/69 | ████████ 100.0% |
NavigationAgent2D |
2D | 80/80 | ████████ 100.0% |
NavigationAgent3D |
3D | 86/86 | ████████ 100.0% |
NavigationLink2D |
2D | 23/23 | ████████ 100.0% |
NavigationLink3D |
3D | 23/23 | ████████ 100.0% |
NavigationMesh |
Resources | 58/58 | ████████ 100.0% |
NavigationMeshGenerator |
Rendering | 4/4 | ████████ 100.0% |
NavigationMeshSourceGeometryData2D |
2D | 16/16 | ████████ 100.0% |
NavigationMeshSourceGeometryData3D |
3D | 16/16 | ████████ 100.0% |
NavigationObstacle2D |
2D | 19/19 | ████████ 100.0% |
NavigationObstacle3D |
3D | 23/23 | ████████ 100.0% |
NavigationPathQueryParameters2D |
2D | 30/30 | ████████ 100.0% |
NavigationPathQueryParameters3D |
3D | 30/30 | ████████ 100.0% |
NavigationPathQueryResult2D |
2D | 11/11 | ████████ 100.0% |
NavigationPathQueryResult3D |
3D | 11/11 | ████████ 100.0% |
NavigationPolygon |
Resources | 38/38 | ████████ 100.0% |
NavigationRegion2D |
2D | 21/21 | ████████ 100.0% |
NavigationRegion3D |
3D | 21/21 | ████████ 100.0% |
NavigationServer2D |
2D | 137/137 | ████████ 100.0% |
NavigationServer2DManager |
Core | 2/2 | ████████ 100.0% |
NavigationServer3D |
3D | 154/154 | ████████ 100.0% |
NavigationServer3DManager |
Core | 2/2 | ████████ 100.0% |
NinePatchRect |
UI | 12/12 | ████████ 100.0% |
Node |
Scene | 121/121 | ████████ 100.0% |
Node2D |
2D | 33/33 | ████████ 100.0% |
Node3D |
3D | 71/71 | ████████ 100.0% |
Node3DGizmo |
Core | 0/0 | inherited only |
Noise |
Resources | 9/9 | ████████ 100.0% |
NoiseTexture2D |
2D | 22/22 | ████████ 100.0% |
NoiseTexture3D |
3D | 15/15 | ████████ 100.0% |
ORMMaterial3D |
3D | 0/0 | inherited only |
OS |
Core | 83/83 | ████████ 100.0% |
Object |
Core | 49/49 | ████████ 100.0% |
Occluder3D |
3D | 2/2 | ████████ 100.0% |
OccluderInstance3D |
3D | 8/8 | ████████ 100.0% |
OccluderPolygon2D |
2D | 6/6 | ████████ 100.0% |
OfflineMultiplayerPeer |
Multiplayer | 0/0 | inherited only |
OggPacketSequence |
Resources | 7/7 | ████████ 100.0% |
OggPacketSequencePlayback |
Core | 0/0 | inherited only |
OmniLight3D |
3D | 2/2 | ████████ 100.0% |
OpenXRAPIExtension |
Core | 51/51 | ████████ 100.0% |
OpenXRAction |
Resources | 6/6 | ████████ 100.0% |
OpenXRActionBindingModifier |
Resources | 0/0 | inherited only |
OpenXRActionMap |
Resources | 15/15 | ████████ 100.0% |
OpenXRActionSet |
Resources | 9/9 | ████████ 100.0% |
OpenXRAnalogThresholdModifier |
Resources | 8/8 | ████████ 100.0% |
OpenXRAnchorTracker |
Core | 3/3 | ████████ 100.0% |
OpenXRAndroidThreadSettingsExtension |
Core | 1/1 | ████████ 100.0% |
OpenXRBindingModifier |
Resources | 0/0 | inherited only |
OpenXRBindingModifierEditor |
UI | 2/2 | ████████ 100.0% |
OpenXRCompositionLayer |
3D | 41/41 | ████████ 100.0% |
OpenXRCompositionLayerCylinder |
3D | 8/8 | ████████ 100.0% |
OpenXRCompositionLayerEquirect |
3D | 10/10 | ████████ 100.0% |
OpenXRCompositionLayerQuad |
3D | 2/2 | ████████ 100.0% |
OpenXRDpadBindingModifier |
Resources | 18/18 | ████████ 100.0% |
OpenXRExtensionWrapper |
Core | 2/2 | ████████ 100.0% |
OpenXRExtensionWrapperExtension |
Core | 0/0 | inherited only |
OpenXRFrameSynthesisExtension |
Core | 6/6 | ████████ 100.0% |
OpenXRFutureExtension |
Core | 3/3 | ████████ 100.0% |
OpenXRFutureResult |
Core | 5/5 | ████████ 100.0% |
OpenXRHand |
3D | 10/10 | ████████ 100.0% |
OpenXRHapticBase |
Resources | 0/0 | inherited only |
OpenXRHapticVibration |
Resources | 6/6 | ████████ 100.0% |
OpenXRIPBinding |
Resources | 14/14 | ████████ 100.0% |
OpenXRIPBindingModifier |
Resources | 0/0 | inherited only |
OpenXRInteractionProfile |
Resources | 10/10 | ████████ 100.0% |
OpenXRInteractionProfileEditor |
UI | 0/0 | inherited only |
OpenXRInteractionProfileEditorBase |
UI | 1/1 | ████████ 100.0% |
OpenXRInteractionProfileMetadata |
Core | 5/5 | ████████ 100.0% |
OpenXRInterface |
Core | 36/36 | ████████ 100.0% |
OpenXRMarkerTracker |
Core | 8/8 | ████████ 100.0% |
OpenXRPlaneTracker |
Core | 11/11 | ████████ 100.0% |
OpenXRRenderModel |
3D | 3/3 | ████████ 100.0% |
OpenXRRenderModelExtension |
Core | 13/13 | ████████ 100.0% |
OpenXRRenderModelManager |
3D | 4/4 | ████████ 100.0% |
OpenXRSpatialAnchorCapability |
Core | 11/13 | ███████░ 84.6% |
OpenXRSpatialCapabilityConfigurationAnchor |
Core | 1/1 | ████████ 100.0% |
OpenXRSpatialCapabilityConfigurationAprilTag |
Core | 3/3 | ████████ 100.0% |
OpenXRSpatialCapabilityConfigurationAruco |
Core | 3/3 | ████████ 100.0% |
OpenXRSpatialCapabilityConfigurationBaseHeader |
Core | 2/2 | ████████ 100.0% |
OpenXRSpatialCapabilityConfigurationMicroQrCode |
Core | 1/1 | ████████ 100.0% |
OpenXRSpatialCapabilityConfigurationPlaneTracking |
Core | 4/4 | ████████ 100.0% |
OpenXRSpatialCapabilityConfigurationQrCode |
Core | 1/1 | ████████ 100.0% |
OpenXRSpatialComponentAnchorList |
Core | 1/1 | ████████ 100.0% |
OpenXRSpatialComponentBounded2DList |
Core | 2/2 | ████████ 100.0% |
OpenXRSpatialComponentBounded3DList |
Core | 2/2 | ████████ 100.0% |
OpenXRSpatialComponentData |
Core | 2/2 | ████████ 100.0% |
OpenXRSpatialComponentMarkerList |
Core | 3/3 | ████████ 100.0% |
OpenXRSpatialComponentMesh2DList |
Rendering | 3/3 | ████████ 100.0% |
OpenXRSpatialComponentMesh3DList |
Rendering | 2/2 | ████████ 100.0% |
OpenXRSpatialComponentParentList |
Core | 1/1 | ████████ 100.0% |
OpenXRSpatialComponentPersistenceList |
Core | 2/2 | ████████ 100.0% |
OpenXRSpatialComponentPlaneAlignmentList |
Core | 1/1 | ████████ 100.0% |
OpenXRSpatialComponentPlaneSemanticLabelList |
Core | 1/1 | ████████ 100.0% |
OpenXRSpatialComponentPolygon2DList |
Core | 2/2 | ████████ 100.0% |
OpenXRSpatialContextPersistenceConfig |
Core | 3/3 | ████████ 100.0% |
OpenXRSpatialEntityExtension |
Core | 26/26 | ████████ 100.0% |
OpenXRSpatialEntityTracker |
Core | 9/9 | ████████ 100.0% |
OpenXRSpatialMarkerTrackingCapability |
Core | 6/6 | ████████ 100.0% |
OpenXRSpatialPlaneTrackingCapability |
Core | 2/2 | ████████ 100.0% |
OpenXRSpatialQueryResultData |
Core | 3/3 | ████████ 100.0% |
OpenXRStructureBase |
Core | 3/3 | ████████ 100.0% |
OpenXRVisibilityMask |
3D | 0/0 | inherited only |
OptimizedTranslation |
Resources | 1/1 | ████████ 100.0% |
OptionButton |
UI | 44/44 | ████████ 100.0% |
PCKPacker |
Core | 5/5 | ████████ 100.0% |
PackedDataContainer |
Resources | 2/2 | ████████ 100.0% |
PackedDataContainerRef |
Core | 1/1 | ████████ 100.0% |
PackedScene |
Resources | 4/4 | ████████ 100.0% |
PacketPeer |
Core | 8/8 | ████████ 100.0% |
PacketPeerDTLS |
Core | 4/4 | ████████ 100.0% |
PacketPeerExtension |
Core | 0/0 | inherited only |
PacketPeerStream |
Core | 6/6 | ████████ 100.0% |
PacketPeerUDP |
Core | 13/13 | ████████ 100.0% |
Panel |
UI | 0/0 | inherited only |
PanelContainer |
UI | 0/0 | inherited only |
PanoramaSkyMaterial |
Resources | 6/6 | ████████ 100.0% |
Parallax2D |
2D | 20/20 | ████████ 100.0% |
ParallaxBackground |
Scene | 12/12 | ████████ 100.0% |
ParallaxLayer |
2D | 6/6 | ████████ 100.0% |
ParticleProcessMaterial |
Resources | 116/116 | ████████ 100.0% |
Path2D |
2D | 2/2 | ████████ 100.0% |
Path3D |
3D | 4/4 | ████████ 100.0% |
PathFollow2D |
2D | 14/14 | ████████ 100.0% |
PathFollow3D |
3D | 19/19 | ████████ 100.0% |
Performance |
Core | 8/8 | ████████ 100.0% |
PhysicalBone2D |
2D | 12/12 | ████████ 100.0% |
PhysicalBone3D |
3D | 37/37 | ████████ 100.0% |
PhysicalBoneSimulator3D |
3D | 5/5 | ████████ 100.0% |
PhysicalSkyMaterial |
Resources | 22/22 | ████████ 100.0% |
PhysicsBody2D |
2D | 6/6 | ████████ 100.0% |
PhysicsBody3D |
3D | 8/8 | ████████ 100.0% |
PhysicsDirectBodyState2D |
2D | 48/48 | ████████ 100.0% |
PhysicsDirectBodyState2DExtension |
2D | 0/0 | inherited only |
PhysicsDirectBodyState3D |
3D | 50/50 | ████████ 100.0% |
PhysicsDirectBodyState3DExtension |
3D | 0/0 | inherited only |
PhysicsDirectSpaceState2D |
2D | 6/6 | ████████ 100.0% |
PhysicsDirectSpaceState2DExtension |
2D | 1/1 | ████████ 100.0% |
PhysicsDirectSpaceState3D |
3D | 6/6 | ████████ 100.0% |
PhysicsDirectSpaceState3DExtension |
3D | 1/1 | ████████ 100.0% |
PhysicsMaterial |
Physics | 8/8 | ████████ 100.0% |
PhysicsPointQueryParameters2D |
2D | 12/12 | ████████ 100.0% |
PhysicsPointQueryParameters3D |
3D | 10/10 | ████████ 100.0% |
PhysicsRayQueryParameters2D |
2D | 15/15 | ████████ 100.0% |
PhysicsRayQueryParameters3D |
3D | 17/17 | ████████ 100.0% |
PhysicsServer2D |
2D | 119/119 | ████████ 100.0% |
PhysicsServer2DExtension |
2D | 2/2 | ████████ 100.0% |
PhysicsServer2DManager |
Physics | 2/2 | ████████ 100.0% |
PhysicsServer3D |
3D | 175/175 | ████████ 100.0% |
PhysicsServer3DExtension |
3D | 2/2 | ████████ 100.0% |
PhysicsServer3DManager |
Physics | 2/2 | ████████ 100.0% |
PhysicsServer3DRenderingServerHandler |
Physics | 3/3 | ████████ 100.0% |
PhysicsShapeQueryParameters2D |
2D | 18/18 | ████████ 100.0% |
PhysicsShapeQueryParameters3D |
3D | 18/18 | ████████ 100.0% |
PhysicsTestMotionParameters2D |
2D | 14/14 | ████████ 100.0% |
PhysicsTestMotionParameters3D |
3D | 16/16 | ████████ 100.0% |
PhysicsTestMotionResult2D |
2D | 13/13 | ████████ 100.0% |
PhysicsTestMotionResult3D |
3D | 14/14 | ████████ 100.0% |
PinJoint2D |
2D | 12/12 | ████████ 100.0% |
PinJoint3D |
3D | 2/2 | ████████ 100.0% |
PlaceholderCubemap |
Resources | 0/0 | inherited only |
PlaceholderCubemapArray |
Resources | 0/0 | inherited only |
PlaceholderMaterial |
Resources | 0/0 | inherited only |
PlaceholderMesh |
Resources | 1/1 | ████████ 100.0% |
PlaceholderTexture2D |
2D | 1/1 | ████████ 100.0% |
PlaceholderTexture2DArray |
Resources | 0/0 | inherited only |
PlaceholderTexture3D |
3D | 2/2 | ████████ 100.0% |
PlaceholderTextureLayered |
Resources | 3/3 | ████████ 100.0% |
PlaneMesh |
Resources | 10/10 | ████████ 100.0% |
PointLight2D |
2D | 6/6 | ████████ 100.0% |
PointMesh |
Resources | 0/0 | inherited only |
Polygon2D |
2D | 38/38 | ████████ 100.0% |
PolygonOccluder3D |
3D | 2/2 | ████████ 100.0% |
PolygonPathFinder |
Resources | 8/8 | ████████ 100.0% |
Popup |
Scene | 0/0 | inherited only |
PopupMenu |
Scene | 102/102 | ████████ 100.0% |
PopupPanel |
Scene | 0/0 | inherited only |
PortableCompressedTexture2D |
2D | 9/9 | ████████ 100.0% |
PrimitiveMesh |
Resources | 12/12 | ████████ 100.0% |
PrismMesh |
Resources | 10/10 | ████████ 100.0% |
ProceduralSkyMaterial |
Resources | 28/28 | ████████ 100.0% |
ProgressBar |
UI | 8/8 | ████████ 100.0% |
ProjectSettings |
Core | 21/21 | ████████ 100.0% |
PropertyTweener |
Core | 7/7 | ████████ 100.0% |
QuadMesh |
Resources | 0/0 | inherited only |
QuadOccluder3D |
3D | 2/2 | ████████ 100.0% |
RDAccelerationStructureGeometry |
Core | 18/18 | ████████ 100.0% |
RDAccelerationStructureInstance |
Core | 12/12 | ████████ 100.0% |
RDAttachmentFormat |
Core | 6/6 | ████████ 100.0% |
RDFramebufferPass |
Core | 10/10 | ████████ 100.0% |
RDHitGroup |
Core | 6/6 | ████████ 100.0% |
RDPipelineColorBlendState |
Core | 8/8 | ████████ 100.0% |
RDPipelineColorBlendStateAttachment |
Core | 23/23 | ████████ 100.0% |
RDPipelineDepthStencilState |
Core | 42/42 | ████████ 100.0% |
RDPipelineMultisampleState |
Core | 12/12 | ████████ 100.0% |
RDPipelineRasterizationState |
Core | 22/22 | ████████ 100.0% |
RDPipelineShader |
Rendering | 4/4 | ████████ 100.0% |
RDPipelineSpecializationConstant |
Core | 4/4 | ████████ 100.0% |
RDSamplerState |
Core | 30/30 | ████████ 100.0% |
RDShaderFile |
Resources | 5/5 | ████████ 100.0% |
RDShaderSPIRV |
Resources | 4/4 | ████████ 100.0% |
RDShaderSource |
Rendering | 4/4 | ████████ 100.0% |
RDTextureFormat |
Rendering | 24/24 | ████████ 100.0% |
RDTextureView |
Rendering | 10/10 | ████████ 100.0% |
RDUniform |
Core | 7/7 | ████████ 100.0% |
RDVertexAttribute |
Core | 12/12 | ████████ 100.0% |
RandomNumberGenerator |
Core | 11/11 | ████████ 100.0% |
Range |
UI | 24/23 | ████████ 104.3% |
RayCast2D |
2D | 28/28 | ████████ 100.0% |
RayCast3D |
3D | 35/35 | ████████ 100.0% |
RectangleShape2D |
2D | 2/2 | ████████ 100.0% |
RefCounted |
Core | 3/4 | ██████░░ 75.0% |
ReferenceRect |
UI | 6/6 | ████████ 100.0% |
ReflectionProbe |
3D | 30/30 | ████████ 100.0% |
RegEx |
Core | 10/10 | ████████ 100.0% |
RegExMatch |
Core | 7/7 | ████████ 100.0% |
RemoteTransform2D |
2D | 11/11 | ████████ 100.0% |
RemoteTransform3D |
3D | 11/11 | ████████ 100.0% |
RenderData |
Core | 4/4 | ████████ 100.0% |
RenderDataExtension |
Core | 0/0 | inherited only |
RenderDataRD |
Core | 0/0 | inherited only |
RenderSceneBuffers |
Core | 1/1 | ████████ 100.0% |
RenderSceneBuffersConfiguration |
Core | 20/20 | ████████ 100.0% |
RenderSceneBuffersExtension |
Core | 0/0 | inherited only |
RenderSceneBuffersRD |
Core | 27/27 | ████████ 100.0% |
RenderSceneData |
Core | 6/6 | ████████ 100.0% |
RenderSceneDataExtension |
Core | 0/0 | inherited only |
RenderSceneDataRD |
Core | 0/0 | inherited only |
RenderingDevice |
Rendering | 135/135 | ████████ 100.0% |
RenderingServer |
Rendering | 535/535 | ████████ 100.0% |
Resource |
Resources | 21/22 | ████████ 95.5% |
ResourceFormatLoader |
Core | 0/0 | inherited only |
ResourceFormatSaver |
Core | 0/0 | inherited only |
ResourceImporter |
Core | 0/0 | inherited only |
ResourceImporterBMFont |
Core | 0/0 | inherited only |
ResourceImporterBitMap |
Core | 0/0 | inherited only |
ResourceImporterCSVTranslation |
Core | 0/0 | inherited only |
ResourceImporterDynamicFont |
Core | 0/0 | inherited only |
ResourceImporterImage |
Rendering | 0/0 | inherited only |
ResourceImporterImageFont |
Rendering | 0/0 | inherited only |
ResourceImporterLayeredTexture |
Rendering | 0/0 | inherited only |
ResourceImporterMP3 |
Core | 0/0 | inherited only |
ResourceImporterOBJ |
Core | 0/0 | inherited only |
ResourceImporterOggVorbis |
Core | 2/2 | ████████ 100.0% |
ResourceImporterSVG |
Core | 0/0 | inherited only |
ResourceImporterScene |
Core | 0/0 | inherited only |
ResourceImporterShaderFile |
Rendering | 0/0 | inherited only |
ResourceImporterTexture |
Rendering | 0/0 | inherited only |
ResourceImporterTextureAtlas |
Rendering | 0/0 | inherited only |
ResourceImporterWAV |
Core | 0/0 | inherited only |
ResourceLoader |
Core | 14/14 | ████████ 100.0% |
ResourcePreloader |
Scene | 6/6 | ████████ 100.0% |
ResourceSaver |
Core | 6/6 | ████████ 100.0% |
ResourceUID |
Core | 12/12 | ████████ 100.0% |
RetargetModifier3D |
3D | 12/12 | ████████ 100.0% |
RibbonTrailMesh |
Resources | 12/12 | ████████ 100.0% |
RichTextEffect |
Resources | 0/0 | inherited only |
RichTextLabel |
UI | 138/138 | ████████ 100.0% |
RigidBody2D |
2D | 58/58 | ████████ 100.0% |
RigidBody3D |
3D | 59/59 | ████████ 100.0% |
RootMotionView |
3D | 10/10 | ████████ 100.0% |
SceneMultiplayer |
Core | 22/22 | ████████ 100.0% |
SceneReplicationConfig |
Resources | 13/13 | ████████ 100.0% |
SceneState |
Core | 23/23 | ████████ 100.0% |
SceneTree |
Scene | 47/47 | ████████ 100.0% |
SceneTreeTimer |
Core | 2/2 | ████████ 100.0% |
Script |
Resources | 19/19 | ████████ 100.0% |
ScriptBacktrace |
Core | 16/16 | ████████ 100.0% |
ScriptCreateDialog |
Scene | 1/1 | ████████ 100.0% |
ScriptEditor |
UI | 16/16 | ████████ 100.0% |
ScriptEditorBase |
UI | 2/2 | ████████ 100.0% |
ScriptExtension |
Resources | 0/0 | inherited only |
ScriptLanguage |
Core | 0/0 | inherited only |
ScriptLanguageExtension |
Core | 0/0 | inherited only |
ScrollBar |
UI | 2/2 | ████████ 100.0% |
ScrollContainer |
UI | 27/27 | ████████ 100.0% |
SegmentShape2D |
2D | 4/4 | ████████ 100.0% |
Semaphore |
Core | 3/3 | ████████ 100.0% |
SeparationRayShape2D |
2D | 4/4 | ████████ 100.0% |
SeparationRayShape3D |
3D | 4/4 | ████████ 100.0% |
Separator |
UI | 0/0 | inherited only |
Shader |
Resources | 7/7 | ████████ 100.0% |
ShaderGlobalsOverride |
Rendering | 0/0 | inherited only |
ShaderInclude |
Resources | 2/2 | ████████ 100.0% |
ShaderIncludeDB |
Rendering | 3/3 | ████████ 100.0% |
ShaderMaterial |
Resources | 4/4 | ████████ 100.0% |
Shape2D |
2D | 8/8 | ████████ 100.0% |
Shape3D |
3D | 5/5 | ████████ 100.0% |
ShapeCast2D |
2D | 36/36 | ████████ 100.0% |
ShapeCast3D |
3D | 39/39 | ████████ 100.0% |
Shortcut |
Input | 5/5 | ████████ 100.0% |
Skeleton2D |
2D | 8/8 | ████████ 100.0% |
Skeleton3D |
3D | 56/56 | ████████ 100.0% |
SkeletonIK3D |
3D | 24/24 | ████████ 100.0% |
SkeletonModification2D |
2D | 10/10 | ████████ 100.0% |
SkeletonModification2DCCDIK |
2D | 20/20 | ████████ 100.0% |
SkeletonModification2DFABRIK |
2D | 12/12 | ████████ 100.0% |
SkeletonModification2DJiggle |
2D | 35/35 | ████████ 100.0% |
SkeletonModification2DLookAt |
2D | 16/16 | ████████ 100.0% |
SkeletonModification2DPhysicalBones |
2D | 7/7 | ████████ 100.0% |
SkeletonModification2DStackHolder |
2D | 2/2 | ████████ 100.0% |
SkeletonModification2DTwoBoneIK |
2D | 16/16 | ████████ 100.0% |
SkeletonModificationStack2D |
2D | 15/15 | ████████ 100.0% |
SkeletonModifier3D |
3D | 5/5 | ████████ 100.0% |
SkeletonProfile |
Resources | 29/29 | ████████ 100.0% |
SkeletonProfileHumanoid |
Resources | 0/0 | inherited only |
Skin |
Resources | 11/11 | ████████ 100.0% |
SkinReference |
Core | 2/2 | ████████ 100.0% |
Sky |
Resources | 6/6 | ████████ 100.0% |
Slider |
UI | 10/10 | ████████ 100.0% |
SliderJoint3D |
3D | 2/2 | ████████ 100.0% |
SocketServer |
Core | 4/4 | ████████ 100.0% |
SoftBody3D |
3D | 39/39 | ████████ 100.0% |
SphereMesh |
Resources | 10/10 | ████████ 100.0% |
SphereOccluder3D |
3D | 2/2 | ████████ 100.0% |
SphereShape3D |
3D | 2/2 | ████████ 100.0% |
SpinBox |
UI | 18/18 | ████████ 100.0% |
SplineIK3D |
3D | 8/8 | ████████ 100.0% |
SplitContainer |
UI | 27/27 | ████████ 100.0% |
SpotLight3D |
3D | 0/0 | inherited only |
SpringArm3D |
3D | 12/12 | ████████ 100.0% |
SpringBoneCollision3D |
3D | 9/9 | ████████ 100.0% |
SpringBoneCollisionCapsule3D |
3D | 8/8 | ████████ 100.0% |
SpringBoneCollisionPlane3D |
3D | 0/0 | inherited only |
SpringBoneCollisionSphere3D |
3D | 4/4 | ████████ 100.0% |
SpringBoneSimulator3D |
3D | 83/83 | ████████ 100.0% |
Sprite2D |
2D | 26/26 | ████████ 100.0% |
Sprite3D |
3D | 14/14 | ████████ 100.0% |
SpriteBase3D |
3D | 34/34 | ████████ 100.0% |
SpriteFrames |
Resources | 20/20 | ████████ 100.0% |
StandardMaterial3D |
3D | 0/0 | inherited only |
StaticBody2D |
2D | 6/6 | ████████ 100.0% |
StaticBody3D |
3D | 6/6 | ████████ 100.0% |
StatusIndicator |
Scene | 9/9 | ████████ 100.0% |
StreamPeer |
Core | 35/35 | ████████ 100.0% |
StreamPeerBuffer |
Core | 8/8 | ████████ 100.0% |
StreamPeerExtension |
Core | 0/0 | inherited only |
StreamPeerGZIP |
Core | 4/4 | ████████ 100.0% |
StreamPeerSocket |
Core | 3/3 | ████████ 100.0% |
StreamPeerTCP |
Core | 6/6 | ████████ 100.0% |
StreamPeerTLS |
Core | 6/6 | ████████ 100.0% |
StreamPeerUDS |
Core | 3/3 | ████████ 100.0% |
StyleBox |
Resources | 9/9 | ████████ 100.0% |
StyleBoxEmpty |
Resources | 0/0 | inherited only |
StyleBoxFlat |
Resources | 32/32 | ████████ 100.0% |
StyleBoxLine |
Resources | 10/10 | ████████ 100.0% |
StyleBoxTexture |
Resources | 18/18 | ████████ 100.0% |
SubViewport |
Scene | 12/12 | ████████ 100.0% |
SubViewportContainer |
UI | 6/6 | ████████ 100.0% |
SubtweenTweener |
Core | 1/1 | ████████ 100.0% |
SurfaceTool |
Core | 33/33 | ████████ 100.0% |
SyntaxHighlighter |
Resources | 4/4 | ████████ 100.0% |
SystemFont |
Resources | 32/32 | ████████ 100.0% |
TCPServer |
Core | 3/3 | ████████ 100.0% |
TLSOptions |
Core | 9/9 | ████████ 100.0% |
TabBar |
UI | 60/60 | ████████ 100.0% |
TabContainer |
UI | 51/51 | ████████ 100.0% |
TextEdit |
UI | 249/249 | ████████ 100.0% |
TextLine |
Core | 39/39 | ████████ 100.0% |
TextMesh |
Resources | 36/36 | ████████ 100.0% |
TextParagraph |
Core | 62/62 | ████████ 100.0% |
TextServer |
Core | 244/244 | ████████ 100.0% |
TextServerAdvanced |
Core | 0/0 | inherited only |
TextServerDummy |
Core | 0/0 | inherited only |
TextServerExtension |
Core | 0/0 | inherited only |
TextServerManager |
Core | 8/8 | ████████ 100.0% |
Texture |
Resources | 0/0 | inherited only |
Texture2D |
2D | 12/12 | ████████ 100.0% |
Texture2DArray |
Resources | 1/1 | ████████ 100.0% |
Texture2DArrayRD |
Resources | 0/0 | inherited only |
Texture2DRD |
2D | 2/2 | ████████ 100.0% |
Texture3D |
3D | 7/7 | ████████ 100.0% |
Texture3DRD |
3D | 2/2 | ████████ 100.0% |
TextureButton |
UI | 20/20 | ████████ 100.0% |
TextureCubemapArrayRD |
Resources | 0/0 | inherited only |
TextureCubemapRD |
Resources | 0/0 | inherited only |
TextureLayered |
Resources | 7/7 | ████████ 100.0% |
TextureLayeredRD |
Resources | 2/2 | ████████ 100.0% |
TextureProgressBar |
UI | 26/26 | ████████ 100.0% |
TextureRect |
UI | 10/10 | ████████ 100.0% |
Theme |
Resources | 69/69 | ████████ 100.0% |
ThemeDB |
Core | 12/12 | ████████ 100.0% |
Thread |
Core | 7/7 | ████████ 100.0% |
TileData |
Core | 54/54 | ████████ 100.0% |
TileMap |
2D | 61/61 | ████████ 100.0% |
TileMapLayer |
2D | 55/55 | ████████ 100.0% |
TileMapPattern |
Resources | 10/10 | ████████ 100.0% |
TileSet |
Resources | 90/90 | ████████ 100.0% |
TileSetAtlasSource |
Resources | 41/41 | ████████ 100.0% |
TileSetScenesCollectionSource |
Resources | 11/11 | ████████ 100.0% |
TileSetSource |
Resources | 6/6 | ████████ 100.0% |
Time |
Core | 21/21 | ████████ 100.0% |
Timer |
Scene | 16/16 | ████████ 100.0% |
TorusMesh |
Resources | 8/8 | ████████ 100.0% |
TouchScreenButton |
2D | 19/19 | ████████ 100.0% |
Translation |
Resources | 12/12 | ████████ 100.0% |
TranslationDomain |
Core | 33/33 | ████████ 100.0% |
TranslationServer |
Core | 34/34 | ████████ 100.0% |
Tree |
UI | 72/72 | ████████ 100.0% |
TreeItem |
Core | 125/125 | ████████ 100.0% |
TriangleMesh |
Rendering | 4/4 | ████████ 100.0% |
TubeTrailMesh |
Resources | 16/16 | ████████ 100.0% |
Tween |
Core | 27/28 | ████████ 96.4% |
Tweener |
Core | 0/0 | inherited only |
TwoBoneIK3D |
3D | 28/28 | ████████ 100.0% |
UDPServer |
Core | 9/9 | ████████ 100.0% |
UDSServer |
Core | 2/2 | ████████ 100.0% |
UPNP |
Core | 17/17 | ████████ 100.0% |
UPNPDevice |
Core | 16/16 | ████████ 100.0% |
UndoRedo |
Core | 23/23 | ████████ 100.0% |
UniformSetCacheRD |
Core | 1/1 | ████████ 100.0% |
VBoxContainer |
UI | 0/0 | inherited only |
VFlowContainer |
UI | 0/0 | inherited only |
VScrollBar |
UI | 0/0 | inherited only |
VSeparator |
UI | 0/0 | inherited only |
VSlider |
UI | 0/0 | inherited only |
VSplitContainer |
UI | 0/0 | inherited only |
VehicleBody3D |
3D | 6/6 | ████████ 100.0% |
VehicleWheel3D |
3D | 34/34 | ████████ 100.0% |
VideoStream |
Resources | 2/2 | ████████ 100.0% |
VideoStreamPlayback |
Resources | 1/1 | ████████ 100.0% |
VideoStreamPlayer |
UI | 30/30 | ████████ 100.0% |
VideoStreamTheora |
Resources | 0/0 | inherited only |
Viewport |
Scene | 130/130 | ████████ 100.0% |
ViewportTexture |
2D | 2/2 | ████████ 100.0% |
VirtualJoystick |
UI | 22/22 | ████████ 100.0% |
VisibleOnScreenEnabler2D |
2D | 4/4 | ████████ 100.0% |
VisibleOnScreenEnabler3D |
3D | 4/4 | ████████ 100.0% |
VisibleOnScreenNotifier2D |
2D | 5/5 | ████████ 100.0% |
VisibleOnScreenNotifier3D |
3D | 2/2 | ████████ 100.0% |
VisualInstance3D |
3D | 12/12 | ████████ 100.0% |
VisualShader |
Resources | 22/22 | ████████ 100.0% |
VisualShaderNode |
Resources | 11/11 | ████████ 100.0% |
VisualShaderNodeBillboard |
Resources | 4/4 | ████████ 100.0% |
VisualShaderNodeBooleanConstant |
Resources | 2/2 | ████████ 100.0% |
VisualShaderNodeBooleanParameter |
Resources | 4/4 | ████████ 100.0% |
VisualShaderNodeClamp |
Resources | 2/2 | ████████ 100.0% |
VisualShaderNodeColorConstant |
Resources | 2/2 | ████████ 100.0% |
VisualShaderNodeColorFunc |
Resources | 2/2 | ████████ 100.0% |
VisualShaderNodeColorOp |
Resources | 2/2 | ████████ 100.0% |
VisualShaderNodeColorParameter |
Resources | 4/4 | ████████ 100.0% |
VisualShaderNodeComment |
Resources | 2/2 | ████████ 100.0% |
VisualShaderNodeCompare |
Resources | 6/6 | ████████ 100.0% |
VisualShaderNodeConstant |
Resources | 0/0 | inherited only |
VisualShaderNodeCubemap |
Resources | 6/6 | ████████ 100.0% |
VisualShaderNodeCubemapParameter |
Resources | 0/0 | inherited only |
VisualShaderNodeCurveTexture |
Resources | 2/2 | ████████ 100.0% |
VisualShaderNodeCurveXYZTexture |
Resources | 2/2 | ████████ 100.0% |
VisualShaderNodeCustom |
Resources | 1/1 | ████████ 100.0% |
VisualShaderNodeDerivativeFunc |
Resources | 6/6 | ████████ 100.0% |
VisualShaderNodeDeterminant |
Resources | 0/0 | inherited only |
VisualShaderNodeDistanceFade |
Resources | 0/0 | inherited only |
VisualShaderNodeDotProduct |
Resources | 0/0 | inherited only |
VisualShaderNodeExpression |
Resources | 2/2 | ████████ 100.0% |
VisualShaderNodeFaceForward |
Resources | 0/0 | inherited only |
VisualShaderNodeFloatConstant |
Resources | 2/2 | ████████ 100.0% |
VisualShaderNodeFloatFunc |
Resources | 2/2 | ████████ 100.0% |
VisualShaderNodeFloatOp |
Resources | 2/2 | ████████ 100.0% |
VisualShaderNodeFloatParameter |
Resources | 12/12 | ████████ 100.0% |
VisualShaderNodeFrame |
Resources | 12/12 | ████████ 100.0% |
VisualShaderNodeFresnel |
Resources | 0/0 | inherited only |
VisualShaderNodeGlobalExpression |
Resources | 0/0 | inherited only |
VisualShaderNodeGroupBase |
Resources | 21/21 | ████████ 100.0% |
VisualShaderNodeIf |
Resources | 0/0 | inherited only |
VisualShaderNodeInput |
Resources | 3/3 | ████████ 100.0% |
VisualShaderNodeIntConstant |
Resources | 2/2 | ████████ 100.0% |
VisualShaderNodeIntFunc |
Resources | 2/2 | ████████ 100.0% |
VisualShaderNodeIntOp |
Resources | 2/2 | ████████ 100.0% |
VisualShaderNodeIntParameter |
Resources | 14/14 | ████████ 100.0% |
VisualShaderNodeIs |
Resources | 2/2 | ████████ 100.0% |
VisualShaderNodeLinearSceneDepth |
Resources | 0/0 | inherited only |
VisualShaderNodeMix |
Resources | 2/2 | ████████ 100.0% |
VisualShaderNodeMultiplyAdd |
Resources | 2/2 | ████████ 100.0% |
VisualShaderNodeOuterProduct |
Resources | 0/0 | inherited only |
VisualShaderNodeOutput |
Resources | 0/0 | inherited only |
VisualShaderNodeParameter |
Resources | 6/6 | ████████ 100.0% |
VisualShaderNodeParameterRef |
Resources | 2/2 | ████████ 100.0% |
VisualShaderNodeParticleAccelerator |
Resources | 2/2 | ████████ 100.0% |
VisualShaderNodeParticleBoxEmitter |
Resources | 0/0 | inherited only |
VisualShaderNodeParticleConeVelocity |
Resources | 0/0 | inherited only |
VisualShaderNodeParticleEmit |
Resources | 2/2 | ████████ 100.0% |
VisualShaderNodeParticleEmitter |
Resources | 2/2 | ████████ 100.0% |
VisualShaderNodeParticleMeshEmitter |
Resources | 6/6 | ████████ 100.0% |
VisualShaderNodeParticleMultiplyByAxisAngle |
Resources | 2/2 | ████████ 100.0% |
VisualShaderNodeParticleOutput |
Resources | 0/0 | inherited only |
VisualShaderNodeParticleRandomness |
Resources | 2/2 | ████████ 100.0% |
VisualShaderNodeParticleRingEmitter |
Resources | 0/0 | inherited only |
VisualShaderNodeParticleSphereEmitter |
Resources | 0/0 | inherited only |
VisualShaderNodeProximityFade |
Resources | 0/0 | inherited only |
VisualShaderNodeRandomRange |
Resources | 0/0 | inherited only |
VisualShaderNodeRemap |
Resources | 2/2 | ████████ 100.0% |
VisualShaderNodeReroute |
Resources | 1/1 | ████████ 100.0% |
VisualShaderNodeResizableBase |
Resources | 2/2 | ████████ 100.0% |
VisualShaderNodeRotationByAxis |
Resources | 0/0 | inherited only |
VisualShaderNodeSDFRaymarch |
Resources | 0/0 | inherited only |
VisualShaderNodeSDFToScreenUV |
Resources | 0/0 | inherited only |
VisualShaderNodeSample3D |
3D | 2/2 | ████████ 100.0% |
VisualShaderNodeScreenNormalWorldSpace |
Resources | 0/0 | inherited only |
VisualShaderNodeScreenUVToSDF |
Resources | 0/0 | inherited only |
VisualShaderNodeSmoothStep |
Resources | 2/2 | ████████ 100.0% |
VisualShaderNodeStep |
Resources | 2/2 | ████████ 100.0% |
VisualShaderNodeSwitch |
Resources | 2/2 | ████████ 100.0% |
VisualShaderNodeTexture |
Resources | 6/6 | ████████ 100.0% |
VisualShaderNodeTexture2DArray |
3D | 2/2 | ████████ 100.0% |
VisualShaderNodeTexture2DArrayParameter |
Resources | 0/0 | inherited only |
VisualShaderNodeTexture2DParameter |
Resources | 0/0 | inherited only |
VisualShaderNodeTexture3D |
3D | 2/2 | ████████ 100.0% |
VisualShaderNodeTexture3DParameter |
Resources | 0/0 | inherited only |
VisualShaderNodeTextureParameter |
Resources | 10/10 | ████████ 100.0% |
VisualShaderNodeTextureParameterTriplanar |
Resources | 0/0 | inherited only |
VisualShaderNodeTextureSDF |
Resources | 0/0 | inherited only |
VisualShaderNodeTextureSDFNormal |
Resources | 0/0 | inherited only |
VisualShaderNodeTransformCompose |
Resources | 0/0 | inherited only |
VisualShaderNodeTransformConstant |
Resources | 2/2 | ████████ 100.0% |
VisualShaderNodeTransformDecompose |
Resources | 0/0 | inherited only |
VisualShaderNodeTransformFunc |
Resources | 2/2 | ████████ 100.0% |
VisualShaderNodeTransformOp |
Resources | 2/2 | ████████ 100.0% |
VisualShaderNodeTransformParameter |
Resources | 4/4 | ████████ 100.0% |
VisualShaderNodeTransformVecMult |
Resources | 2/2 | ████████ 100.0% |
VisualShaderNodeUIntConstant |
Resources | 2/2 | ████████ 100.0% |
VisualShaderNodeUIntFunc |
Resources | 2/2 | ████████ 100.0% |
VisualShaderNodeUIntOp |
Resources | 2/2 | ████████ 100.0% |
VisualShaderNodeUIntParameter |
Resources | 4/4 | ████████ 100.0% |
VisualShaderNodeUVFunc |
Resources | 2/2 | ████████ 100.0% |
VisualShaderNodeUVPolarCoord |
Resources | 0/0 | inherited only |
VisualShaderNodeVarying |
Resources | 4/4 | ████████ 100.0% |
VisualShaderNodeVaryingGetter |
Resources | 0/0 | inherited only |
VisualShaderNodeVaryingSetter |
Resources | 0/0 | inherited only |
VisualShaderNodeVec2Constant |
Resources | 2/2 | ████████ 100.0% |
VisualShaderNodeVec2Parameter |
Resources | 4/4 | ████████ 100.0% |
VisualShaderNodeVec3Constant |
Resources | 2/2 | ████████ 100.0% |
VisualShaderNodeVec3Parameter |
Resources | 4/4 | ████████ 100.0% |
VisualShaderNodeVec4Constant |
Resources | 2/2 | ████████ 100.0% |
VisualShaderNodeVec4Parameter |
Resources | 4/4 | ████████ 100.0% |
VisualShaderNodeVectorBase |
Resources | 2/2 | ████████ 100.0% |
VisualShaderNodeVectorCompose |
Resources | 0/0 | inherited only |
VisualShaderNodeVectorDecompose |
Resources | 0/0 | inherited only |
VisualShaderNodeVectorDistance |
Resources | 0/0 | inherited only |
VisualShaderNodeVectorFunc |
Resources | 2/2 | ████████ 100.0% |
VisualShaderNodeVectorLen |
Resources | 0/0 | inherited only |
VisualShaderNodeVectorOp |
Resources | 2/2 | ████████ 100.0% |
VisualShaderNodeVectorRefract |
Resources | 0/0 | inherited only |
VisualShaderNodeWorldPositionFromDepth |
Resources | 0/0 | inherited only |
VoxelGI |
3D | 10/10 | ████████ 100.0% |
VoxelGIData |
Resources | 21/21 | ████████ 100.0% |
WeakRef |
Core | 1/1 | ████████ 100.0% |
WebRTCDataChannel |
Core | 14/14 | ████████ 100.0% |
WebRTCDataChannelExtension |
Core | 0/0 | inherited only |
WebRTCMultiplayerPeer |
Core | 8/8 | ████████ 100.0% |
WebRTCPeerConnection |
Core | 12/12 | ████████ 100.0% |
WebRTCPeerConnectionExtension |
Core | 0/0 | inherited only |
WebSocketMultiplayerPeer |
Core | 17/17 | ████████ 100.0% |
WebSocketPeer |
Core | 28/28 | ████████ 100.0% |
WebXRInterface |
Core | 18/18 | ████████ 100.0% |
Window |
Scene | 133/133 | ████████ 100.0% |
WorkerThreadPool |
Core | 9/9 | ████████ 100.0% |
World2D |
2D | 4/4 | ████████ 100.0% |
World3D |
3D | 10/10 | ████████ 100.0% |
WorldBoundaryShape2D |
2D | 4/4 | ████████ 100.0% |
WorldBoundaryShape3D |
3D | 2/2 | ████████ 100.0% |
WorldEnvironment |
Scene | 6/6 | ████████ 100.0% |
X509Certificate |
Resources | 4/4 | ████████ 100.0% |
XMLParser |
Core | 17/17 | ████████ 100.0% |
XRAnchor3D |
3D | 2/2 | ████████ 100.0% |
XRBodyModifier3D |
3D | 6/6 | ████████ 100.0% |
XRBodyTracker |
Core | 8/8 | ████████ 100.0% |
XRCamera3D |
3D | 0/0 | inherited only |
XRController3D |
3D | 5/5 | ████████ 100.0% |
XRControllerTracker |
Core | 0/0 | inherited only |
XRFaceModifier3D |
3D | 4/4 | ████████ 100.0% |
XRFaceTracker |
Core | 4/4 | ████████ 100.0% |
XRHandModifier3D |
3D | 4/4 | ████████ 100.0% |
XRHandTracker |
Core | 14/14 | ████████ 100.0% |
XRInterface |
Core | 28/28 | ████████ 100.0% |
XRInterfaceExtension |
Core | 5/5 | ████████ 100.0% |
XRNode3D |
3D | 10/10 | ████████ 100.0% |
XROrigin3D |
3D | 4/4 | ████████ 100.0% |
XRPose |
Core | 13/13 | ████████ 100.0% |
XRPositionalTracker |
Core | 10/10 | ████████ 100.0% |
XRServer |
Core | 22/22 | ████████ 100.0% |
XRTracker |
Core | 6/6 | ████████ 100.0% |
XRVRS |
Core | 7/7 | ████████ 100.0% |
ZIPPacker |
Core | 8/8 | ████████ 100.0% |
ZIPReader |
Core | 6/6 | ████████ 100.0% |