@ringozz/godot 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/gen/classes/AESContext.ts +99 -0
- package/gen/classes/AStar2D.ts +222 -0
- package/gen/classes/AStar3D.ts +247 -0
- package/gen/classes/AStarGrid2D.ts +284 -0
- package/gen/classes/AcceptDialog.ts +104 -0
- package/gen/classes/AccessibilityServer.ts +824 -0
- package/gen/classes/AimModifier3D.ts +75 -0
- package/gen/classes/AnimatableBody2D.ts +21 -0
- package/gen/classes/AnimatableBody3D.ts +21 -0
- package/gen/classes/AnimatedSprite2D.ts +160 -0
- package/gen/classes/AnimatedSprite3D.ts +134 -0
- package/gen/classes/AnimatedTexture.ts +74 -0
- package/gen/classes/Animation.ts +596 -0
- package/gen/classes/AnimationLibrary.ts +77 -0
- package/gen/classes/AnimationMixer.ts +450 -0
- package/gen/classes/AnimationNode.ts +159 -0
- package/gen/classes/AnimationNodeAdd2.ts +16 -0
- package/gen/classes/AnimationNodeAdd3.ts +20 -0
- package/gen/classes/AnimationNodeAnimation.ts +84 -0
- package/gen/classes/AnimationNodeBlend2.ts +15 -0
- package/gen/classes/AnimationNodeBlend3.ts +19 -0
- package/gen/classes/AnimationNodeBlendSpace1D.ts +162 -0
- package/gen/classes/AnimationNodeBlendSpace2D.ts +204 -0
- package/gen/classes/AnimationNodeBlendTree.ts +110 -0
- package/gen/classes/AnimationNodeExtension.ts +25 -0
- package/gen/classes/AnimationNodeOneShot.ts +144 -0
- package/gen/classes/AnimationNodeOutput.ts +14 -0
- package/gen/classes/AnimationNodeStateMachine.ts +163 -0
- package/gen/classes/AnimationNodeStateMachinePlayback.ts +111 -0
- package/gen/classes/AnimationNodeStateMachineTransition.ts +120 -0
- package/gen/classes/AnimationNodeSub2.ts +17 -0
- package/gen/classes/AnimationNodeSync.ts +21 -0
- package/gen/classes/AnimationNodeTimeScale.ts +14 -0
- package/gen/classes/AnimationNodeTimeSeek.ts +36 -0
- package/gen/classes/AnimationNodeTransition.ts +92 -0
- package/gen/classes/AnimationPlayer.ts +319 -0
- package/gen/classes/AnimationRootNode.ts +15 -0
- package/gen/classes/AnimationTree.ts +60 -0
- package/gen/classes/Area2D.ts +252 -0
- package/gen/classes/Area3D.ts +305 -0
- package/gen/classes/AreaLight3D.ts +56 -0
- package/gen/classes/ArrayMesh.ts +177 -0
- package/gen/classes/ArrayOccluder3D.ts +35 -0
- package/gen/classes/AspectRatioContainer.ts +78 -0
- package/gen/classes/AtlasTexture.ts +42 -0
- package/gen/classes/AudioBusLayout.ts +14 -0
- package/gen/classes/AudioEffect.ts +16 -0
- package/gen/classes/AudioEffectAmplify.ts +27 -0
- package/gen/classes/AudioEffectBandLimitFilter.ts +15 -0
- package/gen/classes/AudioEffectBandPassFilter.ts +15 -0
- package/gen/classes/AudioEffectCapture.ts +62 -0
- package/gen/classes/AudioEffectChorus.ts +95 -0
- package/gen/classes/AudioEffectCompressor.ts +62 -0
- package/gen/classes/AudioEffectDelay.ts +93 -0
- package/gen/classes/AudioEffectDistortion.ts +75 -0
- package/gen/classes/AudioEffectEQ.ts +30 -0
- package/gen/classes/AudioEffectEQ10.ts +25 -0
- package/gen/classes/AudioEffectEQ21.ts +36 -0
- package/gen/classes/AudioEffectEQ6.ts +21 -0
- package/gen/classes/AudioEffectFilter.ts +68 -0
- package/gen/classes/AudioEffectHardLimiter.ts +34 -0
- package/gen/classes/AudioEffectHighPassFilter.ts +15 -0
- package/gen/classes/AudioEffectHighShelfFilter.ts +15 -0
- package/gen/classes/AudioEffectInstance.ts +14 -0
- package/gen/classes/AudioEffectLimiter.ts +40 -0
- package/gen/classes/AudioEffectLowPassFilter.ts +15 -0
- package/gen/classes/AudioEffectLowShelfFilter.ts +15 -0
- package/gen/classes/AudioEffectNotchFilter.ts +15 -0
- package/gen/classes/AudioEffectPanner.ts +21 -0
- package/gen/classes/AudioEffectPhaser.ts +45 -0
- package/gen/classes/AudioEffectPitchShift.ts +62 -0
- package/gen/classes/AudioEffectRecord.ts +39 -0
- package/gen/classes/AudioEffectReverb.ts +63 -0
- package/gen/classes/AudioEffectSpectrumAnalyzer.ts +57 -0
- package/gen/classes/AudioEffectSpectrumAnalyzerInstance.ts +35 -0
- package/gen/classes/AudioEffectStereoEnhance.ts +32 -0
- package/gen/classes/AudioListener2D.ts +31 -0
- package/gen/classes/AudioListener3D.ts +61 -0
- package/gen/classes/AudioSample.ts +14 -0
- package/gen/classes/AudioSamplePlayback.ts +14 -0
- package/gen/classes/AudioServer.ts +360 -0
- package/gen/classes/AudioStream.ts +53 -0
- package/gen/classes/AudioStreamGenerator.ts +88 -0
- package/gen/classes/AudioStreamGeneratorPlayback.ts +45 -0
- package/gen/classes/AudioStreamInteractive.ts +216 -0
- package/gen/classes/AudioStreamMP3.ts +74 -0
- package/gen/classes/AudioStreamMicrophone.ts +15 -0
- package/gen/classes/AudioStreamOggVorbis.ts +71 -0
- package/gen/classes/AudioStreamPlayback.ts +63 -0
- package/gen/classes/AudioStreamPlaybackInteractive.ts +37 -0
- package/gen/classes/AudioStreamPlaybackOggVorbis.ts +14 -0
- package/gen/classes/AudioStreamPlaybackPlaylist.ts +13 -0
- package/gen/classes/AudioStreamPlaybackPolyphonic.ts +49 -0
- package/gen/classes/AudioStreamPlaybackResampled.ts +19 -0
- package/gen/classes/AudioStreamPlaybackSynchronized.ts +13 -0
- package/gen/classes/AudioStreamPlayer.ts +146 -0
- package/gen/classes/AudioStreamPlayer2D.ts +143 -0
- package/gen/classes/AudioStreamPlayer3D.ts +233 -0
- package/gen/classes/AudioStreamPlaylist.ts +240 -0
- package/gen/classes/AudioStreamPolyphonic.ts +21 -0
- package/gen/classes/AudioStreamRandomizer.ts +99 -0
- package/gen/classes/AudioStreamSynchronized.ts +45 -0
- package/gen/classes/AudioStreamWAV.ts +151 -0
- package/gen/classes/AwaitTweener.ts +20 -0
- package/gen/classes/BackBufferCopy.ts +46 -0
- package/gen/classes/BaseButton.ts +164 -0
- package/gen/classes/BaseMaterial3D.ts +1477 -0
- package/gen/classes/BitMap.ts +94 -0
- package/gen/classes/BlitMaterial.ts +46 -0
- package/gen/classes/Bone2D.ts +71 -0
- package/gen/classes/BoneAttachment3D.ts +57 -0
- package/gen/classes/BoneConstraint3D.ts +122 -0
- package/gen/classes/BoneMap.ts +53 -0
- package/gen/classes/BoneTwistDisperser3D.ts +209 -0
- package/gen/classes/BoxContainer.ts +51 -0
- package/gen/classes/BoxMesh.ts +41 -0
- package/gen/classes/BoxOccluder3D.ts +22 -0
- package/gen/classes/BoxShape3D.ts +22 -0
- package/gen/classes/Button.ts +117 -0
- package/gen/classes/ButtonGroup.ts +39 -0
- package/gen/classes/CCDIK3D.ts +16 -0
- package/gen/classes/CPUParticles2D.ts +590 -0
- package/gen/classes/CPUParticles3D.ts +650 -0
- package/gen/classes/CSGBox3D.ts +29 -0
- package/gen/classes/CSGCombiner3D.ts +15 -0
- package/gen/classes/CSGCylinder3D.ts +52 -0
- package/gen/classes/CSGMesh3D.ts +32 -0
- package/gen/classes/CSGPolygon3D.ts +170 -0
- package/gen/classes/CSGPrimitive3D.ts +20 -0
- package/gen/classes/CSGShape3D.ts +140 -0
- package/gen/classes/CSGSphere3D.ts +46 -0
- package/gen/classes/CSGTorus3D.ts +52 -0
- package/gen/classes/CallbackTweener.ts +29 -0
- package/gen/classes/Camera2D.ts +266 -0
- package/gen/classes/Camera3D.ts +275 -0
- package/gen/classes/CameraAttributes.ts +50 -0
- package/gen/classes/CameraAttributesPhysical.ts +73 -0
- package/gen/classes/CameraAttributesPractical.ts +75 -0
- package/gen/classes/CameraFeed.ts +155 -0
- package/gen/classes/CameraServer.ts +105 -0
- package/gen/classes/CameraTexture.ts +34 -0
- package/gen/classes/CanvasGroup.ts +54 -0
- package/gen/classes/CanvasItem.ts +698 -0
- package/gen/classes/CanvasItemMaterial.ts +97 -0
- package/gen/classes/CanvasLayer.ts +103 -0
- package/gen/classes/CanvasModulate.ts +21 -0
- package/gen/classes/CanvasTexture.ts +60 -0
- package/gen/classes/CapsuleMesh.ts +40 -0
- package/gen/classes/CapsuleShape2D.ts +35 -0
- package/gen/classes/CapsuleShape3D.ts +35 -0
- package/gen/classes/CenterContainer.ts +20 -0
- package/gen/classes/ChainIK3D.ts +102 -0
- package/gen/classes/CharFXTransform.ts +108 -0
- package/gen/classes/CharacterBody2D.ts +252 -0
- package/gen/classes/CharacterBody3D.ts +246 -0
- package/gen/classes/CheckBox.ts +16 -0
- package/gen/classes/CheckButton.ts +15 -0
- package/gen/classes/CircleShape2D.ts +21 -0
- package/gen/classes/ClassDB.ts +197 -0
- package/gen/classes/CodeEdit.ts +619 -0
- package/gen/classes/CodeHighlighter.ts +132 -0
- package/gen/classes/CollisionObject2D.ts +235 -0
- package/gen/classes/CollisionObject3D.ts +199 -0
- package/gen/classes/CollisionPolygon2D.ts +70 -0
- package/gen/classes/CollisionPolygon3D.ts +54 -0
- package/gen/classes/CollisionShape2D.ts +55 -0
- package/gen/classes/CollisionShape3D.ts +53 -0
- package/gen/classes/ColorPalette.ts +21 -0
- package/gen/classes/ColorPicker.ts +197 -0
- package/gen/classes/ColorPickerButton.ts +68 -0
- package/gen/classes/ColorRect.ts +21 -0
- package/gen/classes/Compositor.ts +22 -0
- package/gen/classes/CompositorEffect.ts +134 -0
- package/gen/classes/CompressedCubemap.ts +22 -0
- package/gen/classes/CompressedCubemapArray.ts +22 -0
- package/gen/classes/CompressedTexture2D.ts +27 -0
- package/gen/classes/CompressedTexture2DArray.ts +22 -0
- package/gen/classes/CompressedTexture3D.ts +22 -0
- package/gen/classes/CompressedTextureLayered.ts +19 -0
- package/gen/classes/ConcavePolygonShape2D.ts +25 -0
- package/gen/classes/ConcavePolygonShape3D.ts +28 -0
- package/gen/classes/ConeTwistJoint3D.ts +84 -0
- package/gen/classes/ConfigFile.ts +170 -0
- package/gen/classes/ConfirmationDialog.ts +39 -0
- package/gen/classes/Container.ts +54 -0
- package/gen/classes/Control.ts +1499 -0
- package/gen/classes/ConvertTransformModifier3D.ts +153 -0
- package/gen/classes/ConvexPolygonShape2D.ts +30 -0
- package/gen/classes/ConvexPolygonShape3D.ts +24 -0
- package/gen/classes/CopyTransformModifier3D.ts +220 -0
- package/gen/classes/Crypto.ts +114 -0
- package/gen/classes/CryptoKey.ts +43 -0
- package/gen/classes/Cubemap.ts +47 -0
- package/gen/classes/CubemapArray.ts +30 -0
- package/gen/classes/Curve.ts +183 -0
- package/gen/classes/Curve2D.ts +145 -0
- package/gen/classes/Curve3D.ts +173 -0
- package/gen/classes/CurveTexture.ts +48 -0
- package/gen/classes/CurveXYZTexture.ts +40 -0
- package/gen/classes/CylinderMesh.ts +58 -0
- package/gen/classes/CylinderShape3D.ts +28 -0
- package/gen/classes/DPITexture.ts +73 -0
- package/gen/classes/DTLSServer.ts +93 -0
- package/gen/classes/DampedSpringJoint2D.ts +38 -0
- package/gen/classes/Decal.ts +146 -0
- package/gen/classes/DirAccess.ts +300 -0
- package/gen/classes/DirectionalLight2D.ts +28 -0
- package/gen/classes/DirectionalLight3D.ts +104 -0
- package/gen/classes/DisplayServer.ts +3119 -0
- package/gen/classes/DrawableTexture2D.ts +75 -0
- package/gen/classes/ENetConnection.ts +192 -0
- package/gen/classes/ENetMultiplayerPeer.ts +54 -0
- package/gen/classes/ENetPacketPeer.ts +234 -0
- package/gen/classes/EncodedObjectAsID.ts +21 -0
- package/gen/classes/Engine.ts +322 -0
- package/gen/classes/EngineDebugger.ts +136 -0
- package/gen/classes/EngineProfiler.ts +16 -0
- package/gen/classes/Environment.ts +786 -0
- package/gen/classes/Expression.ts +60 -0
- package/gen/classes/ExternalTexture.ts +35 -0
- package/gen/classes/FABRIK3D.ts +16 -0
- package/gen/classes/FBXDocument.ts +15 -0
- package/gen/classes/FBXState.ts +20 -0
- package/gen/classes/FastNoiseLite.ts +284 -0
- package/gen/classes/FileAccess.ts +596 -0
- package/gen/classes/FileDialog.ts +428 -0
- package/gen/classes/FlowContainer.ts +84 -0
- package/gen/classes/FogMaterial.ts +54 -0
- package/gen/classes/FogVolume.ts +39 -0
- package/gen/classes/FoldableContainer.ts +110 -0
- package/gen/classes/FoldableGroup.ts +38 -0
- package/gen/classes/Font.ts +242 -0
- package/gen/classes/FontFile.ts +514 -0
- package/gen/classes/FontVariation.ts +123 -0
- package/gen/classes/FramebufferCacheRD.ts +21 -0
- package/gen/classes/GDExtension.ts +47 -0
- package/gen/classes/GDExtensionManager.ts +101 -0
- package/gen/classes/GDScript.ts +30 -0
- package/gen/classes/GLTFAccessor.ts +203 -0
- package/gen/classes/GLTFAnimation.ts +33 -0
- package/gen/classes/GLTFBufferView.ts +68 -0
- package/gen/classes/GLTFCamera.ts +66 -0
- package/gen/classes/GLTFDocument.ts +202 -0
- package/gen/classes/GLTFDocumentExtension.ts +26 -0
- package/gen/classes/GLTFDocumentExtensionConvertImporterMesh.ts +11 -0
- package/gen/classes/GLTFLight.ts +80 -0
- package/gen/classes/GLTFMesh.ts +53 -0
- package/gen/classes/GLTFNode.ts +125 -0
- package/gen/classes/GLTFObjectModelProperty.ts +136 -0
- package/gen/classes/GLTFPhysicsBody.ts +89 -0
- package/gen/classes/GLTFPhysicsShape.ts +92 -0
- package/gen/classes/GLTFSkeleton.ts +32 -0
- package/gen/classes/GLTFSkin.ts +44 -0
- package/gen/classes/GLTFSpecGloss.ts +46 -0
- package/gen/classes/GLTFState.ts +250 -0
- package/gen/classes/GLTFTexture.ts +23 -0
- package/gen/classes/GLTFTextureSampler.ts +38 -0
- package/gen/classes/GPUParticles2D.ts +270 -0
- package/gen/classes/GPUParticles3D.ts +339 -0
- package/gen/classes/GPUParticlesAttractor3D.ts +43 -0
- package/gen/classes/GPUParticlesAttractorBox3D.ts +23 -0
- package/gen/classes/GPUParticlesAttractorSphere3D.ts +23 -0
- package/gen/classes/GPUParticlesAttractorVectorField3D.ts +32 -0
- package/gen/classes/GPUParticlesCollision3D.ts +26 -0
- package/gen/classes/GPUParticlesCollisionBox3D.ts +24 -0
- package/gen/classes/GPUParticlesCollisionHeightField3D.ts +109 -0
- package/gen/classes/GPUParticlesCollisionSDF3D.ts +95 -0
- package/gen/classes/GPUParticlesCollisionSphere3D.ts +23 -0
- package/gen/classes/Generic6DOFJoint3D.ts +146 -0
- package/gen/classes/Geometry2D.ts +249 -0
- package/gen/classes/Geometry3D.ts +94 -0
- package/gen/classes/GeometryInstance3D.ts +223 -0
- package/gen/classes/GodotInstance.ts +48 -0
- package/gen/classes/Gradient.ts +125 -0
- package/gen/classes/GradientTexture1D.ts +33 -0
- package/gen/classes/GradientTexture2D.ts +104 -0
- package/gen/classes/GraphEdit.ts +535 -0
- package/gen/classes/GraphElement.ts +101 -0
- package/gen/classes/GraphFrame.ts +66 -0
- package/gen/classes/GraphNode.ts +241 -0
- package/gen/classes/GridContainer.ts +21 -0
- package/gen/classes/GridMap.ts +294 -0
- package/gen/classes/GrooveJoint2D.ts +26 -0
- package/gen/classes/HBoxContainer.ts +14 -0
- package/gen/classes/HFlowContainer.ts +14 -0
- package/gen/classes/HMACContext.ts +54 -0
- package/gen/classes/HScrollBar.ts +14 -0
- package/gen/classes/HSeparator.ts +14 -0
- package/gen/classes/HSlider.ts +14 -0
- package/gen/classes/HSplitContainer.ts +14 -0
- package/gen/classes/HTTPClient.ts +525 -0
- package/gen/classes/HTTPRequest.ts +264 -0
- package/gen/classes/HashingContext.ts +75 -0
- package/gen/classes/HeightMapShape3D.ts +73 -0
- package/gen/classes/HingeJoint3D.ts +90 -0
- package/gen/classes/IKModifier3D.ts +40 -0
- package/gen/classes/IP.ts +132 -0
- package/gen/classes/Image.ts +835 -0
- package/gen/classes/ImageFormatLoader.ts +31 -0
- package/gen/classes/ImageFormatLoaderExtension.ts +30 -0
- package/gen/classes/ImageTexture.ts +73 -0
- package/gen/classes/ImageTexture3D.ts +29 -0
- package/gen/classes/ImageTextureLayered.ts +66 -0
- package/gen/classes/ImmediateMesh.ts +85 -0
- package/gen/classes/ImporterMesh.ts +159 -0
- package/gen/classes/ImporterMeshInstance3D.ts +45 -0
- package/gen/classes/Input.ts +743 -0
- package/gen/classes/InputEvent.ts +112 -0
- package/gen/classes/InputEventAction.ts +40 -0
- package/gen/classes/InputEventFromWindow.ts +19 -0
- package/gen/classes/InputEventGesture.ts +20 -0
- package/gen/classes/InputEventJoypadButton.ts +30 -0
- package/gen/classes/InputEventJoypadMotion.ts +27 -0
- package/gen/classes/InputEventKey.ts +133 -0
- package/gen/classes/InputEventMIDI.ts +108 -0
- package/gen/classes/InputEventMagnifyGesture.ts +21 -0
- package/gen/classes/InputEventMouse.ts +35 -0
- package/gen/classes/InputEventMouseButton.ts +46 -0
- package/gen/classes/InputEventMouseMotion.ts +67 -0
- package/gen/classes/InputEventPanGesture.ts +22 -0
- package/gen/classes/InputEventScreenDrag.ts +71 -0
- package/gen/classes/InputEventScreenTouch.ts +45 -0
- package/gen/classes/InputEventShortcut.ts +21 -0
- package/gen/classes/InputEventWithModifiers.ts +56 -0
- package/gen/classes/InputMap.ts +97 -0
- package/gen/classes/InstancePlaceholder.ts +33 -0
- package/gen/classes/IntervalTweener.ts +15 -0
- package/gen/classes/ItemList.ts +482 -0
- package/gen/classes/IterateIK3D.ts +136 -0
- package/gen/classes/JNISingleton.ts +20 -0
- package/gen/classes/JSON.ts +163 -0
- package/gen/classes/JSONRPC.ts +87 -0
- package/gen/classes/JacobianIK3D.ts +16 -0
- package/gen/classes/JavaClass.ts +37 -0
- package/gen/classes/JavaClassWrapper.ts +94 -0
- package/gen/classes/JavaObject.ts +28 -0
- package/gen/classes/JavaScriptBridge.ts +85 -0
- package/gen/classes/JavaScriptObject.ts +45 -0
- package/gen/classes/Joint2D.ts +44 -0
- package/gen/classes/Joint3D.ts +46 -0
- package/gen/classes/JointLimitation3D.ts +14 -0
- package/gen/classes/JointLimitationCone3D.ts +21 -0
- package/gen/classes/KinematicCollision2D.ts +83 -0
- package/gen/classes/KinematicCollision3D.ts +88 -0
- package/gen/classes/Label.ts +184 -0
- package/gen/classes/Label3D.ts +280 -0
- package/gen/classes/LabelSettings.ts +168 -0
- package/gen/classes/Light2D.ts +150 -0
- package/gen/classes/Light3D.ts +310 -0
- package/gen/classes/LightOccluder2D.ts +33 -0
- package/gen/classes/LightmapGI.ts +291 -0
- package/gen/classes/LightmapGIData.ts +85 -0
- package/gen/classes/LightmapProbe.ts +16 -0
- package/gen/classes/Lightmapper.ts +14 -0
- package/gen/classes/LightmapperRD.ts +15 -0
- package/gen/classes/LimitAngularVelocityModifier3D.ts +91 -0
- package/gen/classes/Line2D.ts +191 -0
- package/gen/classes/LineEdit.ts +663 -0
- package/gen/classes/LinkButton.ts +99 -0
- package/gen/classes/Logger.ts +38 -0
- package/gen/classes/LookAtModifier3D.ts +245 -0
- package/gen/classes/MainLoop.ts +115 -0
- package/gen/classes/MarginContainer.ts +27 -0
- package/gen/classes/Marker2D.ts +20 -0
- package/gen/classes/Marker3D.ts +20 -0
- package/gen/classes/Marshalls.ts +50 -0
- package/gen/classes/Material.ts +53 -0
- package/gen/classes/MenuBar.ts +114 -0
- package/gen/classes/MenuButton.ts +51 -0
- package/gen/classes/Mesh.ts +348 -0
- package/gen/classes/MeshConvexDecompositionSettings.ts +106 -0
- package/gen/classes/MeshDataTool.ts +251 -0
- package/gen/classes/MeshInstance2D.ts +37 -0
- package/gen/classes/MeshInstance3D.ts +122 -0
- package/gen/classes/MeshLibrary.ts +149 -0
- package/gen/classes/MeshTexture.ts +34 -0
- package/gen/classes/MethodTweener.ts +32 -0
- package/gen/classes/MissingNode.ts +39 -0
- package/gen/classes/MissingResource.ts +27 -0
- package/gen/classes/MobileVRInterface.ts +89 -0
- package/gen/classes/ModifierBoneTarget3D.ts +27 -0
- package/gen/classes/MovieWriter.ts +34 -0
- package/gen/classes/MultiMesh.ts +197 -0
- package/gen/classes/MultiMeshInstance2D.ts +36 -0
- package/gen/classes/MultiMeshInstance3D.ts +22 -0
- package/gen/classes/MultiplayerAPI.ts +139 -0
- package/gen/classes/MultiplayerAPIExtension.ts +99 -0
- package/gen/classes/MultiplayerPeer.ts +148 -0
- package/gen/classes/MultiplayerPeerExtension.ts +17 -0
- package/gen/classes/MultiplayerSpawner.ts +75 -0
- package/gen/classes/MultiplayerSynchronizer.ts +119 -0
- package/gen/classes/Mutex.ts +37 -0
- package/gen/classes/NativeMenu.ts +567 -0
- package/gen/classes/NavigationAgent2D.ts +361 -0
- package/gen/classes/NavigationAgent3D.ts +380 -0
- package/gen/classes/NavigationLink2D.ts +107 -0
- package/gen/classes/NavigationLink3D.ts +107 -0
- package/gen/classes/NavigationMesh.ts +283 -0
- package/gen/classes/NavigationMeshGenerator.ts +46 -0
- package/gen/classes/NavigationMeshSourceGeometryData2D.ts +75 -0
- package/gen/classes/NavigationMeshSourceGeometryData3D.ts +76 -0
- package/gen/classes/NavigationObstacle2D.ts +87 -0
- package/gen/classes/NavigationObstacle3D.ts +100 -0
- package/gen/classes/NavigationPathQueryParameters2D.ts +162 -0
- package/gen/classes/NavigationPathQueryParameters3D.ts +162 -0
- package/gen/classes/NavigationPathQueryResult2D.ts +64 -0
- package/gen/classes/NavigationPathQueryResult3D.ts +64 -0
- package/gen/classes/NavigationPolygon.ts +259 -0
- package/gen/classes/NavigationRegion2D.ts +116 -0
- package/gen/classes/NavigationRegion3D.ts +116 -0
- package/gen/classes/NavigationServer2D.ts +799 -0
- package/gen/classes/NavigationServer2DManager.ts +28 -0
- package/gen/classes/NavigationServer3D.ts +888 -0
- package/gen/classes/NavigationServer3DManager.ts +28 -0
- package/gen/classes/NinePatchRect.ts +95 -0
- package/gen/classes/Node.ts +1336 -0
- package/gen/classes/Node2D.ts +150 -0
- package/gen/classes/Node3D.ts +404 -0
- package/gen/classes/Node3DGizmo.ts +14 -0
- package/gen/classes/Noise.ts +67 -0
- package/gen/classes/NoiseTexture2D.ts +104 -0
- package/gen/classes/NoiseTexture3D.ts +84 -0
- package/gen/classes/ORMMaterial3D.ts +14 -0
- package/gen/classes/OS.ts +848 -0
- package/gen/classes/Object.ts +583 -0
- package/gen/classes/Occluder3D.ts +25 -0
- package/gen/classes/OccluderInstance3D.ts +54 -0
- package/gen/classes/OccluderPolygon2D.ts +51 -0
- package/gen/classes/OfflineMultiplayerPeer.ts +15 -0
- package/gen/classes/OggPacketSequence.ts +38 -0
- package/gen/classes/OggPacketSequencePlayback.ts +11 -0
- package/gen/classes/OmniLight3D.ts +49 -0
- package/gen/classes/OpenXRAPIExtension.ts +303 -0
- package/gen/classes/OpenXRAction.ts +55 -0
- package/gen/classes/OpenXRActionBindingModifier.ts +14 -0
- package/gen/classes/OpenXRActionMap.ts +86 -0
- package/gen/classes/OpenXRActionSet.ts +50 -0
- package/gen/classes/OpenXRAnalogThresholdModifier.ts +40 -0
- package/gen/classes/OpenXRAnchorTracker.ts +32 -0
- package/gen/classes/OpenXRAndroidThreadSettingsExtension.ts +43 -0
- package/gen/classes/OpenXRBindingModifier.ts +14 -0
- package/gen/classes/OpenXRCompositionLayer.ts +275 -0
- package/gen/classes/OpenXRCompositionLayerCylinder.ts +38 -0
- package/gen/classes/OpenXRCompositionLayerEquirect.ts +44 -0
- package/gen/classes/OpenXRCompositionLayerQuad.ts +21 -0
- package/gen/classes/OpenXRDpadBindingModifier.ts +73 -0
- package/gen/classes/OpenXRExtensionWrapper.ts +33 -0
- package/gen/classes/OpenXRExtensionWrapperExtension.ts +14 -0
- package/gen/classes/OpenXRFrameSynthesisExtension.ts +36 -0
- package/gen/classes/OpenXRFutureExtension.ts +43 -0
- package/gen/classes/OpenXRFutureResult.ts +64 -0
- package/gen/classes/OpenXRHand.ts +117 -0
- package/gen/classes/OpenXRHapticBase.ts +13 -0
- package/gen/classes/OpenXRHapticVibration.ts +32 -0
- package/gen/classes/OpenXRIPBinding.ts +72 -0
- package/gen/classes/OpenXRIPBindingModifier.ts +14 -0
- package/gen/classes/OpenXRInteractionProfile.ts +56 -0
- package/gen/classes/OpenXRInteractionProfileMetadata.ts +43 -0
- package/gen/classes/OpenXRInterface.ts +550 -0
- package/gen/classes/OpenXRMarkerTracker.ts +46 -0
- package/gen/classes/OpenXRPlaneTracker.ts +68 -0
- package/gen/classes/OpenXRRenderModel.ts +33 -0
- package/gen/classes/OpenXRRenderModelExtension.ts +105 -0
- package/gen/classes/OpenXRRenderModelManager.ts +63 -0
- package/gen/classes/OpenXRSpatialAnchorCapability.ts +114 -0
- package/gen/classes/OpenXRSpatialCapabilityConfigurationAnchor.ts +21 -0
- package/gen/classes/OpenXRSpatialCapabilityConfigurationAprilTag.ts +50 -0
- package/gen/classes/OpenXRSpatialCapabilityConfigurationAruco.ts +98 -0
- package/gen/classes/OpenXRSpatialCapabilityConfigurationBaseHeader.ts +25 -0
- package/gen/classes/OpenXRSpatialCapabilityConfigurationMicroQrCode.ts +21 -0
- package/gen/classes/OpenXRSpatialCapabilityConfigurationPlaneTracking.ts +36 -0
- package/gen/classes/OpenXRSpatialCapabilityConfigurationQrCode.ts +21 -0
- package/gen/classes/OpenXRSpatialComponentAnchorList.ts +20 -0
- package/gen/classes/OpenXRSpatialComponentBounded2DList.ts +25 -0
- package/gen/classes/OpenXRSpatialComponentBounded3DList.ts +25 -0
- package/gen/classes/OpenXRSpatialComponentData.ts +24 -0
- package/gen/classes/OpenXRSpatialComponentMarkerList.ts +60 -0
- package/gen/classes/OpenXRSpatialComponentMesh2DList.ts +31 -0
- package/gen/classes/OpenXRSpatialComponentMesh3DList.ts +26 -0
- package/gen/classes/OpenXRSpatialComponentParentList.ts +20 -0
- package/gen/classes/OpenXRSpatialComponentPersistenceList.ts +24 -0
- package/gen/classes/OpenXRSpatialComponentPlaneAlignmentList.ts +41 -0
- package/gen/classes/OpenXRSpatialComponentPlaneSemanticLabelList.ts +45 -0
- package/gen/classes/OpenXRSpatialComponentPolygon2DList.ts +26 -0
- package/gen/classes/OpenXRSpatialContextPersistenceConfig.ts +30 -0
- package/gen/classes/OpenXRSpatialEntityExtension.ts +241 -0
- package/gen/classes/OpenXRSpatialEntityTracker.ts +82 -0
- package/gen/classes/OpenXRSpatialMarkerTrackingCapability.ts +56 -0
- package/gen/classes/OpenXRSpatialPlaneTrackingCapability.ts +33 -0
- package/gen/classes/OpenXRSpatialQueryResultData.ts +30 -0
- package/gen/classes/OpenXRStructureBase.ts +25 -0
- package/gen/classes/OpenXRVisibilityMask.ts +15 -0
- package/gen/classes/OptimizedTranslation.ts +22 -0
- package/gen/classes/OptionButton.ts +236 -0
- package/gen/classes/PCKPacker.ts +57 -0
- package/gen/classes/PackedDataContainer.ts +58 -0
- package/gen/classes/PackedDataContainerRef.ts +47 -0
- package/gen/classes/PackedScene.ts +104 -0
- package/gen/classes/PacketPeer.ts +56 -0
- package/gen/classes/PacketPeerDTLS.ts +65 -0
- package/gen/classes/PacketPeerExtension.ts +12 -0
- package/gen/classes/PacketPeerStream.ts +28 -0
- package/gen/classes/PacketPeerUDP.ts +139 -0
- package/gen/classes/Panel.ts +14 -0
- package/gen/classes/PanelContainer.ts +14 -0
- package/gen/classes/PanoramaSkyMaterial.ts +35 -0
- package/gen/classes/Parallax2D.ts +78 -0
- package/gen/classes/ParallaxBackground.ts +52 -0
- package/gen/classes/ParallaxLayer.ts +38 -0
- package/gen/classes/ParticleProcessMaterial.ts +949 -0
- package/gen/classes/Path2D.ts +22 -0
- package/gen/classes/Path3D.ts +42 -0
- package/gen/classes/PathFollow2D.ts +60 -0
- package/gen/classes/PathFollow3D.ts +104 -0
- package/gen/classes/Performance.ts +370 -0
- package/gen/classes/PhysicalBone2D.ts +59 -0
- package/gen/classes/PhysicalBone3D.ts +189 -0
- package/gen/classes/PhysicalBoneSimulator3D.ts +43 -0
- package/gen/classes/PhysicalSkyMaterial.ts +83 -0
- package/gen/classes/PhysicsBody2D.ts +55 -0
- package/gen/classes/PhysicsBody3D.ts +94 -0
- package/gen/classes/PhysicsDirectBodyState2D.ts +249 -0
- package/gen/classes/PhysicsDirectBodyState2DExtension.ts +19 -0
- package/gen/classes/PhysicsDirectBodyState3D.ts +256 -0
- package/gen/classes/PhysicsDirectBodyState3DExtension.ts +19 -0
- package/gen/classes/PhysicsDirectSpaceState2D.ts +77 -0
- package/gen/classes/PhysicsDirectSpaceState2DExtension.ts +19 -0
- package/gen/classes/PhysicsDirectSpaceState3D.ts +81 -0
- package/gen/classes/PhysicsDirectSpaceState3DExtension.ts +19 -0
- package/gen/classes/PhysicsMaterial.ts +39 -0
- package/gen/classes/PhysicsPointQueryParameters2D.ts +54 -0
- package/gen/classes/PhysicsPointQueryParameters3D.ts +47 -0
- package/gen/classes/PhysicsRayQueryParameters2D.ts +71 -0
- package/gen/classes/PhysicsRayQueryParameters3D.ts +77 -0
- package/gen/classes/PhysicsServer2D.ts +1078 -0
- package/gen/classes/PhysicsServer2DExtension.ts +33 -0
- package/gen/classes/PhysicsServer2DManager.ts +28 -0
- package/gen/classes/PhysicsServer3D.ts +1620 -0
- package/gen/classes/PhysicsServer3DExtension.ts +26 -0
- package/gen/classes/PhysicsServer3DManager.ts +28 -0
- package/gen/classes/PhysicsServer3DRenderingServerHandler.ts +27 -0
- package/gen/classes/PhysicsShapeQueryParameters2D.ts +89 -0
- package/gen/classes/PhysicsShapeQueryParameters3D.ts +89 -0
- package/gen/classes/PhysicsTestMotionParameters2D.ts +60 -0
- package/gen/classes/PhysicsTestMotionParameters3D.ts +66 -0
- package/gen/classes/PhysicsTestMotionResult2D.ts +82 -0
- package/gen/classes/PhysicsTestMotionResult3D.ts +87 -0
- package/gen/classes/PinJoint2D.ts +50 -0
- package/gen/classes/PinJoint3D.ts +42 -0
- package/gen/classes/PlaceholderCubemap.ts +17 -0
- package/gen/classes/PlaceholderCubemapArray.ts +17 -0
- package/gen/classes/PlaceholderMaterial.ts +16 -0
- package/gen/classes/PlaceholderMesh.ts +23 -0
- package/gen/classes/PlaceholderTexture2D.ts +24 -0
- package/gen/classes/PlaceholderTexture2DArray.ts +17 -0
- package/gen/classes/PlaceholderTexture3D.ts +24 -0
- package/gen/classes/PlaceholderTextureLayered.ts +29 -0
- package/gen/classes/PlaneMesh.ts +64 -0
- package/gen/classes/PointLight2D.ts +40 -0
- package/gen/classes/PointMesh.ts +16 -0
- package/gen/classes/Polygon2D.ts +150 -0
- package/gen/classes/PolygonOccluder3D.ts +23 -0
- package/gen/classes/PolygonPathFinder.ts +61 -0
- package/gen/classes/Popup.ts +22 -0
- package/gen/classes/PopupMenu.ts +567 -0
- package/gen/classes/PopupPanel.ts +14 -0
- package/gen/classes/PortableCompressedTexture2D.ts +74 -0
- package/gen/classes/PrimitiveMesh.ts +69 -0
- package/gen/classes/PrismMesh.ts +45 -0
- package/gen/classes/ProceduralSkyMaterial.ts +102 -0
- package/gen/classes/ProgressBar.ts +60 -0
- package/gen/classes/ProjectSettings.ts +233 -0
- package/gen/classes/PropertyTweener.ts +94 -0
- package/gen/classes/QuadMesh.ts +14 -0
- package/gen/classes/QuadOccluder3D.ts +22 -0
- package/gen/classes/RDAccelerationStructureGeometry.ts +71 -0
- package/gen/classes/RDAccelerationStructureInstance.ts +53 -0
- package/gen/classes/RDAttachmentFormat.ts +33 -0
- package/gen/classes/RDFramebufferPass.ts +52 -0
- package/gen/classes/RDHitGroup.ts +35 -0
- package/gen/classes/RDPipelineColorBlendState.ts +42 -0
- package/gen/classes/RDPipelineColorBlendStateAttachment.ts +161 -0
- package/gen/classes/RDPipelineDepthStencilState.ts +141 -0
- package/gen/classes/RDPipelineMultisampleState.ts +52 -0
- package/gen/classes/RDPipelineRasterizationState.ts +81 -0
- package/gen/classes/RDPipelineShader.ts +29 -0
- package/gen/classes/RDPipelineSpecializationConstant.ts +28 -0
- package/gen/classes/RDSamplerState.ts +106 -0
- package/gen/classes/RDShaderFile.ts +38 -0
- package/gen/classes/RDShaderSPIRV.ts +136 -0
- package/gen/classes/RDShaderSource.ts +82 -0
- package/gen/classes/RDTextureFormat.ts +93 -0
- package/gen/classes/RDTextureView.ts +45 -0
- package/gen/classes/RDUniform.ts +43 -0
- package/gen/classes/RDVertexAttribute.ts +52 -0
- package/gen/classes/RandomNumberGenerator.ts +114 -0
- package/gen/classes/Range.ts +104 -0
- package/gen/classes/RayCast2D.ts +148 -0
- package/gen/classes/RayCast3D.ts +172 -0
- package/gen/classes/RectangleShape2D.ts +22 -0
- package/gen/classes/RefCounted.ts +41 -0
- package/gen/classes/ReferenceRect.ts +33 -0
- package/gen/classes/ReflectionProbe.ts +145 -0
- package/gen/classes/RegEx.ts +129 -0
- package/gen/classes/RegExMatch.ts +53 -0
- package/gen/classes/RemoteTransform2D.ts +51 -0
- package/gen/classes/RemoteTransform3D.ts +51 -0
- package/gen/classes/RenderData.ts +37 -0
- package/gen/classes/RenderDataExtension.ts +17 -0
- package/gen/classes/RenderDataRD.ts +15 -0
- package/gen/classes/RenderSceneBuffers.ts +20 -0
- package/gen/classes/RenderSceneBuffersConfiguration.ts +78 -0
- package/gen/classes/RenderSceneBuffersExtension.ts +15 -0
- package/gen/classes/RenderSceneBuffersRD.ts +163 -0
- package/gen/classes/RenderSceneData.ts +49 -0
- package/gen/classes/RenderSceneDataExtension.ts +16 -0
- package/gen/classes/RenderSceneDataRD.ts +15 -0
- package/gen/classes/RenderingDevice.ts +3416 -0
- package/gen/classes/RenderingServer.ts +5580 -0
- package/gen/classes/Resource.ts +171 -0
- package/gen/classes/ResourceFormatLoader.ts +44 -0
- package/gen/classes/ResourceFormatSaver.ts +18 -0
- package/gen/classes/ResourceImporter.ts +28 -0
- package/gen/classes/ResourceLoader.ts +178 -0
- package/gen/classes/ResourcePreloader.ts +50 -0
- package/gen/classes/ResourceSaver.ts +94 -0
- package/gen/classes/ResourceUID.ts +73 -0
- package/gen/classes/RetargetModifier3D.ts +91 -0
- package/gen/classes/RibbonTrailMesh.ts +66 -0
- package/gen/classes/RichTextEffect.ts +27 -0
- package/gen/classes/RichTextLabel.ts +860 -0
- package/gen/classes/RigidBody2D.ts +359 -0
- package/gen/classes/RigidBody3D.ts +347 -0
- package/gen/classes/RootMotionView.ts +47 -0
- package/gen/classes/SceneMultiplayer.ts +122 -0
- package/gen/classes/SceneReplicationConfig.ts +96 -0
- package/gen/classes/SceneState.ts +160 -0
- package/gen/classes/SceneTree.ts +371 -0
- package/gen/classes/SceneTreeTimer.ts +42 -0
- package/gen/classes/Script.ts +122 -0
- package/gen/classes/ScriptBacktrace.ts +103 -0
- package/gen/classes/ScriptExtension.ts +15 -0
- package/gen/classes/ScriptLanguage.ts +21 -0
- package/gen/classes/ScriptLanguageExtension.ts +72 -0
- package/gen/classes/ScrollBar.ts +26 -0
- package/gen/classes/ScrollContainer.ts +199 -0
- package/gen/classes/SegmentShape2D.ts +27 -0
- package/gen/classes/Semaphore.ts +33 -0
- package/gen/classes/SeparationRayShape2D.ts +27 -0
- package/gen/classes/SeparationRayShape3D.ts +27 -0
- package/gen/classes/Separator.ts +13 -0
- package/gen/classes/Shader.ts +83 -0
- package/gen/classes/ShaderGlobalsOverride.ts +16 -0
- package/gen/classes/ShaderInclude.ts +20 -0
- package/gen/classes/ShaderIncludeDB.ts +30 -0
- package/gen/classes/ShaderMaterial.ts +36 -0
- package/gen/classes/Shape2D.ts +61 -0
- package/gen/classes/Shape3D.ts +35 -0
- package/gen/classes/ShapeCast2D.ts +168 -0
- package/gen/classes/ShapeCast3D.ts +181 -0
- package/gen/classes/Shortcut.ts +60 -0
- package/gen/classes/Skeleton2D.ts +67 -0
- package/gen/classes/Skeleton3D.ts +359 -0
- package/gen/classes/SkeletonIK3D.ts +119 -0
- package/gen/classes/SkeletonModification2D.ts +58 -0
- package/gen/classes/SkeletonModification2DCCDIK.ts +107 -0
- package/gen/classes/SkeletonModification2DFABRIK.ts +73 -0
- package/gen/classes/SkeletonModification2DJiggle.ts +165 -0
- package/gen/classes/SkeletonModification2DLookAt.ts +84 -0
- package/gen/classes/SkeletonModification2DPhysicalBones.ts +49 -0
- package/gen/classes/SkeletonModification2DStackHolder.ts +26 -0
- package/gen/classes/SkeletonModification2DTwoBoneIK.ts +80 -0
- package/gen/classes/SkeletonModificationStack2D.ts +82 -0
- package/gen/classes/SkeletonModifier3D.ts +168 -0
- package/gen/classes/SkeletonProfile.ts +180 -0
- package/gen/classes/SkeletonProfileHumanoid.ts +76 -0
- package/gen/classes/Skin.ts +35 -0
- package/gen/classes/SkinReference.ts +30 -0
- package/gen/classes/Sky.ts +94 -0
- package/gen/classes/Slider.ts +78 -0
- package/gen/classes/SliderJoint3D.ts +122 -0
- package/gen/classes/SocketServer.ts +34 -0
- package/gen/classes/SoftBody3D.ts +188 -0
- package/gen/classes/SphereMesh.ts +45 -0
- package/gen/classes/SphereOccluder3D.ts +21 -0
- package/gen/classes/SphereShape3D.ts +21 -0
- package/gen/classes/SpinBox.ts +97 -0
- package/gen/classes/SplineIK3D.ts +70 -0
- package/gen/classes/SplitContainer.ts +163 -0
- package/gen/classes/SpotLight3D.ts +46 -0
- package/gen/classes/SpringArm3D.ts +64 -0
- package/gen/classes/SpringBoneCollision3D.ts +48 -0
- package/gen/classes/SpringBoneCollisionCapsule3D.ts +40 -0
- package/gen/classes/SpringBoneCollisionPlane3D.ts +14 -0
- package/gen/classes/SpringBoneCollisionSphere3D.ts +26 -0
- package/gen/classes/SpringBoneSimulator3D.ts +476 -0
- package/gen/classes/Sprite2D.ts +125 -0
- package/gen/classes/Sprite3D.ts +71 -0
- package/gen/classes/SpriteBase3D.ts +205 -0
- package/gen/classes/SpriteFrames.ts +147 -0
- package/gen/classes/StandardMaterial3D.ts +14 -0
- package/gen/classes/StaticBody2D.ts +37 -0
- package/gen/classes/StaticBody3D.ts +37 -0
- package/gen/classes/StatusIndicator.ts +50 -0
- package/gen/classes/StreamPeer.ts +206 -0
- package/gen/classes/StreamPeerBuffer.ts +52 -0
- package/gen/classes/StreamPeerExtension.ts +12 -0
- package/gen/classes/StreamPeerGZIP.ts +37 -0
- package/gen/classes/StreamPeerSocket.ts +51 -0
- package/gen/classes/StreamPeerTCP.ts +48 -0
- package/gen/classes/StreamPeerTLS.ts +73 -0
- package/gen/classes/StreamPeerUDS.ts +32 -0
- package/gen/classes/StyleBox.ts +86 -0
- package/gen/classes/StyleBoxEmpty.ts +14 -0
- package/gen/classes/StyleBoxFlat.ts +200 -0
- package/gen/classes/StyleBoxLine.ts +45 -0
- package/gen/classes/StyleBoxTexture.ts +138 -0
- package/gen/classes/SubViewport.ts +98 -0
- package/gen/classes/SubViewportContainer.ts +40 -0
- package/gen/classes/SubtweenTweener.ts +20 -0
- package/gen/classes/SurfaceTool.ts +271 -0
- package/gen/classes/SyntaxHighlighter.ts +54 -0
- package/gen/classes/SystemFont.ts +122 -0
- package/gen/classes/TCPServer.ts +35 -0
- package/gen/classes/TLSOptions.ts +79 -0
- package/gen/classes/TabBar.ts +363 -0
- package/gen/classes/TabContainer.ts +296 -0
- package/gen/classes/TextEdit.ts +1458 -0
- package/gen/classes/TextLine.ts +179 -0
- package/gen/classes/TextMesh.ts +134 -0
- package/gen/classes/TextParagraph.ts +278 -0
- package/gen/classes/TextServer.ts +1891 -0
- package/gen/classes/TextServerAdvanced.ts +14 -0
- package/gen/classes/TextServerDummy.ts +30 -0
- package/gen/classes/TextServerExtension.ts +20 -0
- package/gen/classes/TextServerManager.ts +71 -0
- package/gen/classes/Texture.ts +14 -0
- package/gen/classes/Texture2D.ts +84 -0
- package/gen/classes/Texture2DArray.ts +22 -0
- package/gen/classes/Texture2DArrayRD.ts +15 -0
- package/gen/classes/Texture2DRD.ts +22 -0
- package/gen/classes/Texture3D.ts +55 -0
- package/gen/classes/Texture3DRD.ts +22 -0
- package/gen/classes/TextureButton.ts +112 -0
- package/gen/classes/TextureCubemapArrayRD.ts +15 -0
- package/gen/classes/TextureCubemapRD.ts +15 -0
- package/gen/classes/TextureLayered.ts +73 -0
- package/gen/classes/TextureLayeredRD.ts +21 -0
- package/gen/classes/TextureProgressBar.ts +158 -0
- package/gen/classes/TextureRect.ts +109 -0
- package/gen/classes/Theme.ts +438 -0
- package/gen/classes/ThemeDB.ts +72 -0
- package/gen/classes/Thread.ts +86 -0
- package/gen/classes/TileData.ts +255 -0
- package/gen/classes/TileMap.ts +400 -0
- package/gen/classes/TileMapLayer.ts +303 -0
- package/gen/classes/TileMapPattern.ts +67 -0
- package/gen/classes/TileSet.ts +619 -0
- package/gen/classes/TileSetAtlasSource.ts +269 -0
- package/gen/classes/TileSetScenesCollectionSource.ts +87 -0
- package/gen/classes/TileSetSource.ts +50 -0
- package/gen/classes/Time.ts +237 -0
- package/gen/classes/Timer.ts +109 -0
- package/gen/classes/TorusMesh.ts +38 -0
- package/gen/classes/TouchScreenButton.ts +106 -0
- package/gen/classes/Translation.ts +91 -0
- package/gen/classes/TranslationDomain.ts +154 -0
- package/gen/classes/TranslationServer.ts +194 -0
- package/gen/classes/Tree.ts +521 -0
- package/gen/classes/TreeItem.ts +682 -0
- package/gen/classes/TriangleMesh.ts +52 -0
- package/gen/classes/TubeTrailMesh.ts +64 -0
- package/gen/classes/Tween.ts +604 -0
- package/gen/classes/Tweener.ts +20 -0
- package/gen/classes/TwoBoneIK3D.ts +173 -0
- package/gen/classes/UDPServer.ts +115 -0
- package/gen/classes/UDSServer.ts +28 -0
- package/gen/classes/UPNP.ts +279 -0
- package/gen/classes/UPNPDevice.ts +116 -0
- package/gen/classes/UndoRedo.ts +226 -0
- package/gen/classes/UniformSetCacheRD.ts +21 -0
- package/gen/classes/VBoxContainer.ts +14 -0
- package/gen/classes/VFlowContainer.ts +14 -0
- package/gen/classes/VScrollBar.ts +14 -0
- package/gen/classes/VSeparator.ts +14 -0
- package/gen/classes/VSlider.ts +14 -0
- package/gen/classes/VSplitContainer.ts +14 -0
- package/gen/classes/VehicleBody3D.ts +38 -0
- package/gen/classes/VehicleWheel3D.ts +134 -0
- package/gen/classes/VideoStream.ts +22 -0
- package/gen/classes/VideoStreamPlayback.ts +21 -0
- package/gen/classes/VideoStreamPlayer.ts +129 -0
- package/gen/classes/VideoStreamTheora.ts +15 -0
- package/gen/classes/Viewport.ts +1109 -0
- package/gen/classes/ViewportTexture.ts +35 -0
- package/gen/classes/VirtualJoystick.ts +150 -0
- package/gen/classes/VisibleOnScreenEnabler2D.ts +47 -0
- package/gen/classes/VisibleOnScreenEnabler3D.ts +47 -0
- package/gen/classes/VisibleOnScreenNotifier2D.ts +48 -0
- package/gen/classes/VisibleOnScreenNotifier3D.ts +42 -0
- package/gen/classes/VisualInstance3D.ts +69 -0
- package/gen/classes/VisualShader.ts +247 -0
- package/gen/classes/VisualShaderNode.ts +103 -0
- package/gen/classes/VisualShaderNodeBillboard.ts +52 -0
- package/gen/classes/VisualShaderNodeBooleanConstant.ts +21 -0
- package/gen/classes/VisualShaderNodeBooleanParameter.ts +26 -0
- package/gen/classes/VisualShaderNodeClamp.ts +54 -0
- package/gen/classes/VisualShaderNodeColorConstant.ts +22 -0
- package/gen/classes/VisualShaderNodeColorFunc.ts +106 -0
- package/gen/classes/VisualShaderNodeColorOp.ts +144 -0
- package/gen/classes/VisualShaderNodeColorParameter.ts +27 -0
- package/gen/classes/VisualShaderNodeComment.ts +20 -0
- package/gen/classes/VisualShaderNodeCompare.ts +124 -0
- package/gen/classes/VisualShaderNodeConstant.ts +13 -0
- package/gen/classes/VisualShaderNodeCubemap.ts +72 -0
- package/gen/classes/VisualShaderNodeCubemapParameter.ts +14 -0
- package/gen/classes/VisualShaderNodeCurveTexture.ts +21 -0
- package/gen/classes/VisualShaderNodeCurveXYZTexture.ts +21 -0
- package/gen/classes/VisualShaderNodeCustom.ts +38 -0
- package/gen/classes/VisualShaderNodeDerivativeFunc.ts +100 -0
- package/gen/classes/VisualShaderNodeDeterminant.ts +14 -0
- package/gen/classes/VisualShaderNodeDistanceFade.ts +14 -0
- package/gen/classes/VisualShaderNodeDotProduct.ts +14 -0
- package/gen/classes/VisualShaderNodeExpression.ts +21 -0
- package/gen/classes/VisualShaderNodeFaceForward.ts +14 -0
- package/gen/classes/VisualShaderNodeFloatConstant.ts +20 -0
- package/gen/classes/VisualShaderNodeFloatFunc.ts +158 -0
- package/gen/classes/VisualShaderNodeFloatOp.ts +70 -0
- package/gen/classes/VisualShaderNodeFloatParameter.ts +72 -0
- package/gen/classes/VisualShaderNodeFrame.ts +58 -0
- package/gen/classes/VisualShaderNodeFresnel.ts +14 -0
- package/gen/classes/VisualShaderNodeGlobalExpression.ts +14 -0
- package/gen/classes/VisualShaderNodeGroupBase.ts +118 -0
- package/gen/classes/VisualShaderNodeIf.ts +17 -0
- package/gen/classes/VisualShaderNodeInput.ts +32 -0
- package/gen/classes/VisualShaderNodeIntConstant.ts +20 -0
- package/gen/classes/VisualShaderNodeIntFunc.ts +46 -0
- package/gen/classes/VisualShaderNodeIntOp.ts +78 -0
- package/gen/classes/VisualShaderNodeIntParameter.ts +83 -0
- package/gen/classes/VisualShaderNodeIs.ts +38 -0
- package/gen/classes/VisualShaderNodeLinearSceneDepth.ts +14 -0
- package/gen/classes/VisualShaderNodeMix.ts +58 -0
- package/gen/classes/VisualShaderNodeMultiplyAdd.ts +46 -0
- package/gen/classes/VisualShaderNodeOuterProduct.ts +14 -0
- package/gen/classes/VisualShaderNodeOutput.ts +13 -0
- package/gen/classes/VisualShaderNodeParameter.ts +57 -0
- package/gen/classes/VisualShaderNodeParameterRef.ts +23 -0
- package/gen/classes/VisualShaderNodeParticleAccelerator.ts +42 -0
- package/gen/classes/VisualShaderNodeParticleBoxEmitter.ts +14 -0
- package/gen/classes/VisualShaderNodeParticleConeVelocity.ts +14 -0
- package/gen/classes/VisualShaderNodeParticleEmit.ts +46 -0
- package/gen/classes/VisualShaderNodeParticleEmitter.ts +19 -0
- package/gen/classes/VisualShaderNodeParticleMeshEmitter.ts +33 -0
- package/gen/classes/VisualShaderNodeParticleMultiplyByAxisAngle.ts +20 -0
- package/gen/classes/VisualShaderNodeParticleOutput.ts +14 -0
- package/gen/classes/VisualShaderNodeParticleRandomness.ts +46 -0
- package/gen/classes/VisualShaderNodeParticleRingEmitter.ts +14 -0
- package/gen/classes/VisualShaderNodeParticleSphereEmitter.ts +14 -0
- package/gen/classes/VisualShaderNodeProximityFade.ts +14 -0
- package/gen/classes/VisualShaderNodeRandomRange.ts +14 -0
- package/gen/classes/VisualShaderNodeRemap.ts +55 -0
- package/gen/classes/VisualShaderNodeReroute.ts +18 -0
- package/gen/classes/VisualShaderNodeResizableBase.ts +20 -0
- package/gen/classes/VisualShaderNodeRotationByAxis.ts +14 -0
- package/gen/classes/VisualShaderNodeSDFRaymarch.ts +14 -0
- package/gen/classes/VisualShaderNodeSDFToScreenUV.ts +14 -0
- package/gen/classes/VisualShaderNodeSample3D.ts +37 -0
- package/gen/classes/VisualShaderNodeScreenNormalWorldSpace.ts +14 -0
- package/gen/classes/VisualShaderNodeScreenUVToSDF.ts +14 -0
- package/gen/classes/VisualShaderNodeSmoothStep.ts +59 -0
- package/gen/classes/VisualShaderNodeStep.ts +59 -0
- package/gen/classes/VisualShaderNodeSwitch.ts +62 -0
- package/gen/classes/VisualShaderNodeTexture.ts +96 -0
- package/gen/classes/VisualShaderNodeTexture2DArray.ts +21 -0
- package/gen/classes/VisualShaderNodeTexture2DArrayParameter.ts +14 -0
- package/gen/classes/VisualShaderNodeTexture2DParameter.ts +14 -0
- package/gen/classes/VisualShaderNodeTexture3D.ts +21 -0
- package/gen/classes/VisualShaderNodeTexture3DParameter.ts +14 -0
- package/gen/classes/VisualShaderNodeTextureParameter.ts +177 -0
- package/gen/classes/VisualShaderNodeTextureParameterTriplanar.ts +14 -0
- package/gen/classes/VisualShaderNodeTextureSDF.ts +14 -0
- package/gen/classes/VisualShaderNodeTextureSDFNormal.ts +14 -0
- package/gen/classes/VisualShaderNodeTransformCompose.ts +14 -0
- package/gen/classes/VisualShaderNodeTransformConstant.ts +21 -0
- package/gen/classes/VisualShaderNodeTransformDecompose.ts +14 -0
- package/gen/classes/VisualShaderNodeTransformFunc.ts +38 -0
- package/gen/classes/VisualShaderNodeTransformOp.ts +66 -0
- package/gen/classes/VisualShaderNodeTransformParameter.ts +27 -0
- package/gen/classes/VisualShaderNodeTransformVecMult.ts +46 -0
- package/gen/classes/VisualShaderNodeUIntConstant.ts +20 -0
- package/gen/classes/VisualShaderNodeUIntFunc.ts +38 -0
- package/gen/classes/VisualShaderNodeUIntOp.ts +78 -0
- package/gen/classes/VisualShaderNodeUIntParameter.ts +26 -0
- package/gen/classes/VisualShaderNodeUVFunc.ts +38 -0
- package/gen/classes/VisualShaderNodeUVPolarCoord.ts +14 -0
- package/gen/classes/VisualShaderNodeVarying.ts +26 -0
- package/gen/classes/VisualShaderNodeVaryingGetter.ts +14 -0
- package/gen/classes/VisualShaderNodeVaryingSetter.ts +14 -0
- package/gen/classes/VisualShaderNodeVec2Constant.ts +21 -0
- package/gen/classes/VisualShaderNodeVec2Parameter.ts +27 -0
- package/gen/classes/VisualShaderNodeVec3Constant.ts +21 -0
- package/gen/classes/VisualShaderNodeVec3Parameter.ts +27 -0
- package/gen/classes/VisualShaderNodeVec4Constant.ts +24 -0
- package/gen/classes/VisualShaderNodeVec4Parameter.ts +27 -0
- package/gen/classes/VisualShaderNodeVectorBase.ts +41 -0
- package/gen/classes/VisualShaderNodeVectorCompose.ts +14 -0
- package/gen/classes/VisualShaderNodeVectorDecompose.ts +14 -0
- package/gen/classes/VisualShaderNodeVectorDistance.ts +15 -0
- package/gen/classes/VisualShaderNodeVectorFunc.ts +162 -0
- package/gen/classes/VisualShaderNodeVectorLen.ts +14 -0
- package/gen/classes/VisualShaderNodeVectorOp.ts +78 -0
- package/gen/classes/VisualShaderNodeVectorRefract.ts +14 -0
- package/gen/classes/VisualShaderNodeWorldPositionFromDepth.ts +14 -0
- package/gen/classes/VoxelGI.ts +85 -0
- package/gen/classes/VoxelGIData.ts +95 -0
- package/gen/classes/WeakRef.ts +20 -0
- package/gen/classes/WebRTCDataChannel.ts +115 -0
- package/gen/classes/WebRTCDataChannelExtension.ts +14 -0
- package/gen/classes/WebRTCMultiplayerPeer.ts +63 -0
- package/gen/classes/WebRTCPeerConnection.ts +220 -0
- package/gen/classes/WebRTCPeerConnectionExtension.ts +15 -0
- package/gen/classes/WebSocketMultiplayerPeer.ts +81 -0
- package/gen/classes/WebSocketPeer.ts +213 -0
- package/gen/classes/WebXRInterface.ts +317 -0
- package/gen/classes/Window.ts +1127 -0
- package/gen/classes/WorkerThreadPool.ts +100 -0
- package/gen/classes/World2D.ts +36 -0
- package/gen/classes/World3D.ts +56 -0
- package/gen/classes/WorldBoundaryShape2D.ts +28 -0
- package/gen/classes/WorldBoundaryShape3D.ts +22 -0
- package/gen/classes/WorldEnvironment.ts +37 -0
- package/gen/classes/X509Certificate.ts +36 -0
- package/gen/classes/XMLParser.ts +154 -0
- package/gen/classes/XRAnchor3D.ts +27 -0
- package/gen/classes/XRBodyModifier3D.ts +70 -0
- package/gen/classes/XRBodyTracker.ts +444 -0
- package/gen/classes/XRCamera3D.ts +16 -0
- package/gen/classes/XRController3D.ts +79 -0
- package/gen/classes/XRControllerTracker.ts +16 -0
- package/gen/classes/XRFaceModifier3D.ts +29 -0
- package/gen/classes/XRFaceTracker.ts +614 -0
- package/gen/classes/XRHandModifier3D.ts +47 -0
- package/gen/classes/XRHandTracker.ts +246 -0
- package/gen/classes/XRInterface.ts +282 -0
- package/gen/classes/XRInterfaceExtension.ts +33 -0
- package/gen/classes/XRNode3D.ts +67 -0
- package/gen/classes/XROrigin3D.ts +29 -0
- package/gen/classes/XRPose.ts +80 -0
- package/gen/classes/XRPositionalTracker.ts +125 -0
- package/gen/classes/XRServer.ts +226 -0
- package/gen/classes/XRTracker.ts +40 -0
- package/gen/classes/XRVRS.ts +40 -0
- package/gen/classes/ZIPPacker.ts +114 -0
- package/gen/classes/ZIPReader.ts +89 -0
- package/gen/classes/index.ts +957 -0
- package/gen/global-constants.ts +60 -0
- package/gen/global-enums.ts +2284 -0
- package/gen/heap-types/GodotArray.ts +615 -0
- package/gen/heap-types/GodotDictionary.ts +298 -0
- package/gen/heap-types/PackedByteArray.ts +400 -0
- package/gen/heap-types/PackedColorArray.ts +144 -0
- package/gen/heap-types/PackedFloat32Array.ts +151 -0
- package/gen/heap-types/PackedFloat64Array.ts +152 -0
- package/gen/heap-types/PackedInt32Array.ts +144 -0
- package/gen/heap-types/PackedInt64Array.ts +145 -0
- package/gen/heap-types/PackedStringArray.ts +153 -0
- package/gen/heap-types/PackedVector2Array.ts +151 -0
- package/gen/heap-types/PackedVector3Array.ts +151 -0
- package/gen/heap-types/PackedVector4Array.ts +151 -0
- package/gen/heap-types/Signal.ts +180 -0
- package/gen/heap-types/index.ts +24 -0
- package/gen/index.ts +11 -0
- package/gen/utility-functions.ts +1457 -0
- package/gen/value-types/AABB.ts +288 -0
- package/gen/value-types/Basis.ts +283 -0
- package/gen/value-types/Color.ts +282 -0
- package/gen/value-types/Plane.ts +134 -0
- package/gen/value-types/Projection.ts +137 -0
- package/gen/value-types/Quaternion.ts +192 -0
- package/gen/value-types/Rect2.ts +182 -0
- package/gen/value-types/Rect2i.ts +161 -0
- package/gen/value-types/Transform2D.ts +206 -0
- package/gen/value-types/Transform3D.ts +137 -0
- package/gen/value-types/Vector2.ts +365 -0
- package/gen/value-types/Vector2i.ts +201 -0
- package/gen/value-types/Vector3.ts +365 -0
- package/gen/value-types/Vector3i.ts +202 -0
- package/gen/value-types/Vector4.ts +285 -0
- package/gen/value-types/Vector4i.ts +208 -0
- package/gen/value-types/index.ts +19 -0
- package/package.json +33 -0
- package/src/debug.ts +219 -0
- package/src/index.ts +36 -0
- package/src/runtime.ts +69 -0
|
@@ -0,0 +1,957 @@
|
|
|
1
|
+
// Auto-generated from extension_api.json - DO NOT EDIT
|
|
2
|
+
// Generated by dev/codegen.ts
|
|
3
|
+
|
|
4
|
+
export { Object } from './Object.ts';
|
|
5
|
+
export { AccessibilityServer } from './AccessibilityServer.ts';
|
|
6
|
+
export { AudioServer } from './AudioServer.ts';
|
|
7
|
+
export { CameraServer } from './CameraServer.ts';
|
|
8
|
+
export { ClassDB } from './ClassDB.ts';
|
|
9
|
+
export { DisplayServer } from './DisplayServer.ts';
|
|
10
|
+
export { Engine } from './Engine.ts';
|
|
11
|
+
export { EngineDebugger } from './EngineDebugger.ts';
|
|
12
|
+
export { FramebufferCacheRD } from './FramebufferCacheRD.ts';
|
|
13
|
+
export { GDExtensionManager } from './GDExtensionManager.ts';
|
|
14
|
+
export { Geometry2D } from './Geometry2D.ts';
|
|
15
|
+
export { Geometry3D } from './Geometry3D.ts';
|
|
16
|
+
export { GodotInstance } from './GodotInstance.ts';
|
|
17
|
+
export { IP } from './IP.ts';
|
|
18
|
+
export { Input } from './Input.ts';
|
|
19
|
+
export { InputMap } from './InputMap.ts';
|
|
20
|
+
export { JNISingleton } from './JNISingleton.ts';
|
|
21
|
+
export { JSONRPC } from './JSONRPC.ts';
|
|
22
|
+
export { JavaClassWrapper } from './JavaClassWrapper.ts';
|
|
23
|
+
export { JavaScriptBridge } from './JavaScriptBridge.ts';
|
|
24
|
+
export { MainLoop } from './MainLoop.ts';
|
|
25
|
+
export { Marshalls } from './Marshalls.ts';
|
|
26
|
+
export { MovieWriter } from './MovieWriter.ts';
|
|
27
|
+
export { NativeMenu } from './NativeMenu.ts';
|
|
28
|
+
export { NavigationMeshGenerator } from './NavigationMeshGenerator.ts';
|
|
29
|
+
export { NavigationServer2D } from './NavigationServer2D.ts';
|
|
30
|
+
export { NavigationServer2DManager } from './NavigationServer2DManager.ts';
|
|
31
|
+
export { NavigationServer3D } from './NavigationServer3D.ts';
|
|
32
|
+
export { NavigationServer3DManager } from './NavigationServer3DManager.ts';
|
|
33
|
+
export { Node } from './Node.ts';
|
|
34
|
+
export { OS } from './OS.ts';
|
|
35
|
+
export { OpenXRExtensionWrapper } from './OpenXRExtensionWrapper.ts';
|
|
36
|
+
export { OpenXRInteractionProfileMetadata } from './OpenXRInteractionProfileMetadata.ts';
|
|
37
|
+
export { Performance } from './Performance.ts';
|
|
38
|
+
export { PhysicsDirectBodyState2D } from './PhysicsDirectBodyState2D.ts';
|
|
39
|
+
export { PhysicsDirectBodyState3D } from './PhysicsDirectBodyState3D.ts';
|
|
40
|
+
export { PhysicsDirectSpaceState2D } from './PhysicsDirectSpaceState2D.ts';
|
|
41
|
+
export { PhysicsDirectSpaceState3D } from './PhysicsDirectSpaceState3D.ts';
|
|
42
|
+
export { PhysicsServer2D } from './PhysicsServer2D.ts';
|
|
43
|
+
export { PhysicsServer2DManager } from './PhysicsServer2DManager.ts';
|
|
44
|
+
export { PhysicsServer3D } from './PhysicsServer3D.ts';
|
|
45
|
+
export { PhysicsServer3DManager } from './PhysicsServer3DManager.ts';
|
|
46
|
+
export { PhysicsServer3DRenderingServerHandler } from './PhysicsServer3DRenderingServerHandler.ts';
|
|
47
|
+
export { ProjectSettings } from './ProjectSettings.ts';
|
|
48
|
+
export { RefCounted } from './RefCounted.ts';
|
|
49
|
+
export { RenderData } from './RenderData.ts';
|
|
50
|
+
export { RenderSceneData } from './RenderSceneData.ts';
|
|
51
|
+
export { RenderingDevice } from './RenderingDevice.ts';
|
|
52
|
+
export { RenderingServer } from './RenderingServer.ts';
|
|
53
|
+
export { ResourceLoader } from './ResourceLoader.ts';
|
|
54
|
+
export { ResourceSaver } from './ResourceSaver.ts';
|
|
55
|
+
export { ResourceUID } from './ResourceUID.ts';
|
|
56
|
+
export { ScriptLanguage } from './ScriptLanguage.ts';
|
|
57
|
+
export { ShaderIncludeDB } from './ShaderIncludeDB.ts';
|
|
58
|
+
export { TextServerManager } from './TextServerManager.ts';
|
|
59
|
+
export { ThemeDB } from './ThemeDB.ts';
|
|
60
|
+
export { TileData } from './TileData.ts';
|
|
61
|
+
export { Time } from './Time.ts';
|
|
62
|
+
export { TranslationServer } from './TranslationServer.ts';
|
|
63
|
+
export { TreeItem } from './TreeItem.ts';
|
|
64
|
+
export { UndoRedo } from './UndoRedo.ts';
|
|
65
|
+
export { UniformSetCacheRD } from './UniformSetCacheRD.ts';
|
|
66
|
+
export { WorkerThreadPool } from './WorkerThreadPool.ts';
|
|
67
|
+
export { XRServer } from './XRServer.ts';
|
|
68
|
+
export { XRVRS } from './XRVRS.ts';
|
|
69
|
+
export { AESContext } from './AESContext.ts';
|
|
70
|
+
export { AStar2D } from './AStar2D.ts';
|
|
71
|
+
export { AStar3D } from './AStar3D.ts';
|
|
72
|
+
export { AStarGrid2D } from './AStarGrid2D.ts';
|
|
73
|
+
export { AnimationMixer } from './AnimationMixer.ts';
|
|
74
|
+
export { AudioEffectInstance } from './AudioEffectInstance.ts';
|
|
75
|
+
export { AudioSample } from './AudioSample.ts';
|
|
76
|
+
export { AudioSamplePlayback } from './AudioSamplePlayback.ts';
|
|
77
|
+
export { AudioStreamPlayback } from './AudioStreamPlayback.ts';
|
|
78
|
+
export { AudioStreamPlayer } from './AudioStreamPlayer.ts';
|
|
79
|
+
export { CameraFeed } from './CameraFeed.ts';
|
|
80
|
+
export { CanvasItem } from './CanvasItem.ts';
|
|
81
|
+
export { CanvasLayer } from './CanvasLayer.ts';
|
|
82
|
+
export { CharFXTransform } from './CharFXTransform.ts';
|
|
83
|
+
export { ConfigFile } from './ConfigFile.ts';
|
|
84
|
+
export { Crypto } from './Crypto.ts';
|
|
85
|
+
export { DTLSServer } from './DTLSServer.ts';
|
|
86
|
+
export { DirAccess } from './DirAccess.ts';
|
|
87
|
+
export { ENetConnection } from './ENetConnection.ts';
|
|
88
|
+
export { EncodedObjectAsID } from './EncodedObjectAsID.ts';
|
|
89
|
+
export { EngineProfiler } from './EngineProfiler.ts';
|
|
90
|
+
export { Expression } from './Expression.ts';
|
|
91
|
+
export { FileAccess } from './FileAccess.ts';
|
|
92
|
+
export { GLTFObjectModelProperty } from './GLTFObjectModelProperty.ts';
|
|
93
|
+
export { HMACContext } from './HMACContext.ts';
|
|
94
|
+
export { HTTPClient } from './HTTPClient.ts';
|
|
95
|
+
export { HTTPRequest } from './HTTPRequest.ts';
|
|
96
|
+
export { HashingContext } from './HashingContext.ts';
|
|
97
|
+
export { ImageFormatLoader } from './ImageFormatLoader.ts';
|
|
98
|
+
export { InstancePlaceholder } from './InstancePlaceholder.ts';
|
|
99
|
+
export { JavaClass } from './JavaClass.ts';
|
|
100
|
+
export { JavaObject } from './JavaObject.ts';
|
|
101
|
+
export { JavaScriptObject } from './JavaScriptObject.ts';
|
|
102
|
+
export { KinematicCollision2D } from './KinematicCollision2D.ts';
|
|
103
|
+
export { KinematicCollision3D } from './KinematicCollision3D.ts';
|
|
104
|
+
export { Lightmapper } from './Lightmapper.ts';
|
|
105
|
+
export { Logger } from './Logger.ts';
|
|
106
|
+
export { MeshConvexDecompositionSettings } from './MeshConvexDecompositionSettings.ts';
|
|
107
|
+
export { MeshDataTool } from './MeshDataTool.ts';
|
|
108
|
+
export { MissingNode } from './MissingNode.ts';
|
|
109
|
+
export { MultiplayerAPI } from './MultiplayerAPI.ts';
|
|
110
|
+
export { MultiplayerSpawner } from './MultiplayerSpawner.ts';
|
|
111
|
+
export { MultiplayerSynchronizer } from './MultiplayerSynchronizer.ts';
|
|
112
|
+
export { Mutex } from './Mutex.ts';
|
|
113
|
+
export { NavigationAgent2D } from './NavigationAgent2D.ts';
|
|
114
|
+
export { NavigationAgent3D } from './NavigationAgent3D.ts';
|
|
115
|
+
export { NavigationPathQueryParameters2D } from './NavigationPathQueryParameters2D.ts';
|
|
116
|
+
export { NavigationPathQueryParameters3D } from './NavigationPathQueryParameters3D.ts';
|
|
117
|
+
export { NavigationPathQueryResult2D } from './NavigationPathQueryResult2D.ts';
|
|
118
|
+
export { NavigationPathQueryResult3D } from './NavigationPathQueryResult3D.ts';
|
|
119
|
+
export { Node3D } from './Node3D.ts';
|
|
120
|
+
export { Node3DGizmo } from './Node3DGizmo.ts';
|
|
121
|
+
export { OggPacketSequencePlayback } from './OggPacketSequencePlayback.ts';
|
|
122
|
+
export { OpenXRAPIExtension } from './OpenXRAPIExtension.ts';
|
|
123
|
+
export { OpenXRAndroidThreadSettingsExtension } from './OpenXRAndroidThreadSettingsExtension.ts';
|
|
124
|
+
export { OpenXRExtensionWrapperExtension } from './OpenXRExtensionWrapperExtension.ts';
|
|
125
|
+
export { OpenXRFrameSynthesisExtension } from './OpenXRFrameSynthesisExtension.ts';
|
|
126
|
+
export { OpenXRFutureExtension } from './OpenXRFutureExtension.ts';
|
|
127
|
+
export { OpenXRFutureResult } from './OpenXRFutureResult.ts';
|
|
128
|
+
export { OpenXRRenderModelExtension } from './OpenXRRenderModelExtension.ts';
|
|
129
|
+
export { OpenXRSpatialAnchorCapability } from './OpenXRSpatialAnchorCapability.ts';
|
|
130
|
+
export { OpenXRSpatialCapabilityConfigurationBaseHeader } from './OpenXRSpatialCapabilityConfigurationBaseHeader.ts';
|
|
131
|
+
export { OpenXRSpatialComponentData } from './OpenXRSpatialComponentData.ts';
|
|
132
|
+
export { OpenXRSpatialEntityExtension } from './OpenXRSpatialEntityExtension.ts';
|
|
133
|
+
export { OpenXRSpatialMarkerTrackingCapability } from './OpenXRSpatialMarkerTrackingCapability.ts';
|
|
134
|
+
export { OpenXRSpatialPlaneTrackingCapability } from './OpenXRSpatialPlaneTrackingCapability.ts';
|
|
135
|
+
export { OpenXRStructureBase } from './OpenXRStructureBase.ts';
|
|
136
|
+
export { PCKPacker } from './PCKPacker.ts';
|
|
137
|
+
export { PackedDataContainerRef } from './PackedDataContainerRef.ts';
|
|
138
|
+
export { PacketPeer } from './PacketPeer.ts';
|
|
139
|
+
export { PhysicsDirectBodyState2DExtension } from './PhysicsDirectBodyState2DExtension.ts';
|
|
140
|
+
export { PhysicsDirectBodyState3DExtension } from './PhysicsDirectBodyState3DExtension.ts';
|
|
141
|
+
export { PhysicsDirectSpaceState2DExtension } from './PhysicsDirectSpaceState2DExtension.ts';
|
|
142
|
+
export { PhysicsDirectSpaceState3DExtension } from './PhysicsDirectSpaceState3DExtension.ts';
|
|
143
|
+
export { PhysicsPointQueryParameters2D } from './PhysicsPointQueryParameters2D.ts';
|
|
144
|
+
export { PhysicsPointQueryParameters3D } from './PhysicsPointQueryParameters3D.ts';
|
|
145
|
+
export { PhysicsRayQueryParameters2D } from './PhysicsRayQueryParameters2D.ts';
|
|
146
|
+
export { PhysicsRayQueryParameters3D } from './PhysicsRayQueryParameters3D.ts';
|
|
147
|
+
export { PhysicsServer2DExtension } from './PhysicsServer2DExtension.ts';
|
|
148
|
+
export { PhysicsServer3DExtension } from './PhysicsServer3DExtension.ts';
|
|
149
|
+
export { PhysicsShapeQueryParameters2D } from './PhysicsShapeQueryParameters2D.ts';
|
|
150
|
+
export { PhysicsShapeQueryParameters3D } from './PhysicsShapeQueryParameters3D.ts';
|
|
151
|
+
export { PhysicsTestMotionParameters2D } from './PhysicsTestMotionParameters2D.ts';
|
|
152
|
+
export { PhysicsTestMotionParameters3D } from './PhysicsTestMotionParameters3D.ts';
|
|
153
|
+
export { PhysicsTestMotionResult2D } from './PhysicsTestMotionResult2D.ts';
|
|
154
|
+
export { PhysicsTestMotionResult3D } from './PhysicsTestMotionResult3D.ts';
|
|
155
|
+
export { RDAccelerationStructureGeometry } from './RDAccelerationStructureGeometry.ts';
|
|
156
|
+
export { RDAccelerationStructureInstance } from './RDAccelerationStructureInstance.ts';
|
|
157
|
+
export { RDAttachmentFormat } from './RDAttachmentFormat.ts';
|
|
158
|
+
export { RDFramebufferPass } from './RDFramebufferPass.ts';
|
|
159
|
+
export { RDHitGroup } from './RDHitGroup.ts';
|
|
160
|
+
export { RDPipelineColorBlendState } from './RDPipelineColorBlendState.ts';
|
|
161
|
+
export { RDPipelineColorBlendStateAttachment } from './RDPipelineColorBlendStateAttachment.ts';
|
|
162
|
+
export { RDPipelineDepthStencilState } from './RDPipelineDepthStencilState.ts';
|
|
163
|
+
export { RDPipelineMultisampleState } from './RDPipelineMultisampleState.ts';
|
|
164
|
+
export { RDPipelineRasterizationState } from './RDPipelineRasterizationState.ts';
|
|
165
|
+
export { RDPipelineShader } from './RDPipelineShader.ts';
|
|
166
|
+
export { RDPipelineSpecializationConstant } from './RDPipelineSpecializationConstant.ts';
|
|
167
|
+
export { RDSamplerState } from './RDSamplerState.ts';
|
|
168
|
+
export { RDShaderSource } from './RDShaderSource.ts';
|
|
169
|
+
export { RDTextureFormat } from './RDTextureFormat.ts';
|
|
170
|
+
export { RDTextureView } from './RDTextureView.ts';
|
|
171
|
+
export { RDUniform } from './RDUniform.ts';
|
|
172
|
+
export { RDVertexAttribute } from './RDVertexAttribute.ts';
|
|
173
|
+
export { RandomNumberGenerator } from './RandomNumberGenerator.ts';
|
|
174
|
+
export { RegEx } from './RegEx.ts';
|
|
175
|
+
export { RegExMatch } from './RegExMatch.ts';
|
|
176
|
+
export { RenderDataExtension } from './RenderDataExtension.ts';
|
|
177
|
+
export { RenderDataRD } from './RenderDataRD.ts';
|
|
178
|
+
export { RenderSceneBuffers } from './RenderSceneBuffers.ts';
|
|
179
|
+
export { RenderSceneBuffersConfiguration } from './RenderSceneBuffersConfiguration.ts';
|
|
180
|
+
export { RenderSceneDataExtension } from './RenderSceneDataExtension.ts';
|
|
181
|
+
export { RenderSceneDataRD } from './RenderSceneDataRD.ts';
|
|
182
|
+
export { Resource } from './Resource.ts';
|
|
183
|
+
export { ResourceFormatLoader } from './ResourceFormatLoader.ts';
|
|
184
|
+
export { ResourceFormatSaver } from './ResourceFormatSaver.ts';
|
|
185
|
+
export { ResourceImporter } from './ResourceImporter.ts';
|
|
186
|
+
export { ResourcePreloader } from './ResourcePreloader.ts';
|
|
187
|
+
export { SceneState } from './SceneState.ts';
|
|
188
|
+
export { SceneTree } from './SceneTree.ts';
|
|
189
|
+
export { SceneTreeTimer } from './SceneTreeTimer.ts';
|
|
190
|
+
export { ScriptBacktrace } from './ScriptBacktrace.ts';
|
|
191
|
+
export { ScriptLanguageExtension } from './ScriptLanguageExtension.ts';
|
|
192
|
+
export { Semaphore } from './Semaphore.ts';
|
|
193
|
+
export { ShaderGlobalsOverride } from './ShaderGlobalsOverride.ts';
|
|
194
|
+
export { SkinReference } from './SkinReference.ts';
|
|
195
|
+
export { SocketServer } from './SocketServer.ts';
|
|
196
|
+
export { StatusIndicator } from './StatusIndicator.ts';
|
|
197
|
+
export { StreamPeer } from './StreamPeer.ts';
|
|
198
|
+
export { SurfaceTool } from './SurfaceTool.ts';
|
|
199
|
+
export { TLSOptions } from './TLSOptions.ts';
|
|
200
|
+
export { TextLine } from './TextLine.ts';
|
|
201
|
+
export { TextParagraph } from './TextParagraph.ts';
|
|
202
|
+
export { TextServer } from './TextServer.ts';
|
|
203
|
+
export { Thread } from './Thread.ts';
|
|
204
|
+
export { Timer } from './Timer.ts';
|
|
205
|
+
export { TranslationDomain } from './TranslationDomain.ts';
|
|
206
|
+
export { TriangleMesh } from './TriangleMesh.ts';
|
|
207
|
+
export { Tween } from './Tween.ts';
|
|
208
|
+
export { Tweener } from './Tweener.ts';
|
|
209
|
+
export { UDPServer } from './UDPServer.ts';
|
|
210
|
+
export { UPNP } from './UPNP.ts';
|
|
211
|
+
export { UPNPDevice } from './UPNPDevice.ts';
|
|
212
|
+
export { Viewport } from './Viewport.ts';
|
|
213
|
+
export { WeakRef } from './WeakRef.ts';
|
|
214
|
+
export { WebRTCPeerConnection } from './WebRTCPeerConnection.ts';
|
|
215
|
+
export { WorldEnvironment } from './WorldEnvironment.ts';
|
|
216
|
+
export { XMLParser } from './XMLParser.ts';
|
|
217
|
+
export { XRInterface } from './XRInterface.ts';
|
|
218
|
+
export { XRPose } from './XRPose.ts';
|
|
219
|
+
export { XRTracker } from './XRTracker.ts';
|
|
220
|
+
export { ZIPPacker } from './ZIPPacker.ts';
|
|
221
|
+
export { ZIPReader } from './ZIPReader.ts';
|
|
222
|
+
export { Animation } from './Animation.ts';
|
|
223
|
+
export { AnimationLibrary } from './AnimationLibrary.ts';
|
|
224
|
+
export { AnimationNode } from './AnimationNode.ts';
|
|
225
|
+
export { AnimationNodeStateMachinePlayback } from './AnimationNodeStateMachinePlayback.ts';
|
|
226
|
+
export { AnimationNodeStateMachineTransition } from './AnimationNodeStateMachineTransition.ts';
|
|
227
|
+
export { AnimationPlayer } from './AnimationPlayer.ts';
|
|
228
|
+
export { AnimationTree } from './AnimationTree.ts';
|
|
229
|
+
export { AudioBusLayout } from './AudioBusLayout.ts';
|
|
230
|
+
export { AudioEffect } from './AudioEffect.ts';
|
|
231
|
+
export { AudioEffectSpectrumAnalyzerInstance } from './AudioEffectSpectrumAnalyzerInstance.ts';
|
|
232
|
+
export { AudioListener3D } from './AudioListener3D.ts';
|
|
233
|
+
export { AudioStream } from './AudioStream.ts';
|
|
234
|
+
export { AudioStreamPlaybackInteractive } from './AudioStreamPlaybackInteractive.ts';
|
|
235
|
+
export { AudioStreamPlaybackPlaylist } from './AudioStreamPlaybackPlaylist.ts';
|
|
236
|
+
export { AudioStreamPlaybackPolyphonic } from './AudioStreamPlaybackPolyphonic.ts';
|
|
237
|
+
export { AudioStreamPlaybackResampled } from './AudioStreamPlaybackResampled.ts';
|
|
238
|
+
export { AudioStreamPlaybackSynchronized } from './AudioStreamPlaybackSynchronized.ts';
|
|
239
|
+
export { AudioStreamPlayer3D } from './AudioStreamPlayer3D.ts';
|
|
240
|
+
export { AwaitTweener } from './AwaitTweener.ts';
|
|
241
|
+
export { BitMap } from './BitMap.ts';
|
|
242
|
+
export { BoneAttachment3D } from './BoneAttachment3D.ts';
|
|
243
|
+
export { BoneMap } from './BoneMap.ts';
|
|
244
|
+
export { ButtonGroup } from './ButtonGroup.ts';
|
|
245
|
+
export { CallbackTweener } from './CallbackTweener.ts';
|
|
246
|
+
export { Camera3D } from './Camera3D.ts';
|
|
247
|
+
export { CameraAttributes } from './CameraAttributes.ts';
|
|
248
|
+
export { CollisionObject3D } from './CollisionObject3D.ts';
|
|
249
|
+
export { CollisionPolygon3D } from './CollisionPolygon3D.ts';
|
|
250
|
+
export { CollisionShape3D } from './CollisionShape3D.ts';
|
|
251
|
+
export { ColorPalette } from './ColorPalette.ts';
|
|
252
|
+
export { Compositor } from './Compositor.ts';
|
|
253
|
+
export { CompositorEffect } from './CompositorEffect.ts';
|
|
254
|
+
export { Control } from './Control.ts';
|
|
255
|
+
export { CryptoKey } from './CryptoKey.ts';
|
|
256
|
+
export { Curve } from './Curve.ts';
|
|
257
|
+
export { Curve2D } from './Curve2D.ts';
|
|
258
|
+
export { Curve3D } from './Curve3D.ts';
|
|
259
|
+
export { ENetPacketPeer } from './ENetPacketPeer.ts';
|
|
260
|
+
export { Environment } from './Environment.ts';
|
|
261
|
+
export { FoldableGroup } from './FoldableGroup.ts';
|
|
262
|
+
export { Font } from './Font.ts';
|
|
263
|
+
export { GDExtension } from './GDExtension.ts';
|
|
264
|
+
export { GLTFAccessor } from './GLTFAccessor.ts';
|
|
265
|
+
export { GLTFAnimation } from './GLTFAnimation.ts';
|
|
266
|
+
export { GLTFBufferView } from './GLTFBufferView.ts';
|
|
267
|
+
export { GLTFCamera } from './GLTFCamera.ts';
|
|
268
|
+
export { GLTFDocument } from './GLTFDocument.ts';
|
|
269
|
+
export { GLTFDocumentExtension } from './GLTFDocumentExtension.ts';
|
|
270
|
+
export { GLTFLight } from './GLTFLight.ts';
|
|
271
|
+
export { GLTFMesh } from './GLTFMesh.ts';
|
|
272
|
+
export { GLTFNode } from './GLTFNode.ts';
|
|
273
|
+
export { GLTFPhysicsBody } from './GLTFPhysicsBody.ts';
|
|
274
|
+
export { GLTFPhysicsShape } from './GLTFPhysicsShape.ts';
|
|
275
|
+
export { GLTFSkeleton } from './GLTFSkeleton.ts';
|
|
276
|
+
export { GLTFSkin } from './GLTFSkin.ts';
|
|
277
|
+
export { GLTFSpecGloss } from './GLTFSpecGloss.ts';
|
|
278
|
+
export { GLTFState } from './GLTFState.ts';
|
|
279
|
+
export { GLTFTexture } from './GLTFTexture.ts';
|
|
280
|
+
export { GLTFTextureSampler } from './GLTFTextureSampler.ts';
|
|
281
|
+
export { Gradient } from './Gradient.ts';
|
|
282
|
+
export { GridMap } from './GridMap.ts';
|
|
283
|
+
export { Image } from './Image.ts';
|
|
284
|
+
export { ImageFormatLoaderExtension } from './ImageFormatLoaderExtension.ts';
|
|
285
|
+
export { ImporterMesh } from './ImporterMesh.ts';
|
|
286
|
+
export { ImporterMeshInstance3D } from './ImporterMeshInstance3D.ts';
|
|
287
|
+
export { InputEvent } from './InputEvent.ts';
|
|
288
|
+
export { IntervalTweener } from './IntervalTweener.ts';
|
|
289
|
+
export { JSON } from './JSON.ts';
|
|
290
|
+
export { Joint3D } from './Joint3D.ts';
|
|
291
|
+
export { JointLimitation3D } from './JointLimitation3D.ts';
|
|
292
|
+
export { LabelSettings } from './LabelSettings.ts';
|
|
293
|
+
export { LightmapGIData } from './LightmapGIData.ts';
|
|
294
|
+
export { LightmapProbe } from './LightmapProbe.ts';
|
|
295
|
+
export { LightmapperRD } from './LightmapperRD.ts';
|
|
296
|
+
export { Marker3D } from './Marker3D.ts';
|
|
297
|
+
export { Material } from './Material.ts';
|
|
298
|
+
export { Mesh } from './Mesh.ts';
|
|
299
|
+
export { MeshLibrary } from './MeshLibrary.ts';
|
|
300
|
+
export { MethodTweener } from './MethodTweener.ts';
|
|
301
|
+
export { MissingResource } from './MissingResource.ts';
|
|
302
|
+
export { MobileVRInterface } from './MobileVRInterface.ts';
|
|
303
|
+
export { MultiMesh } from './MultiMesh.ts';
|
|
304
|
+
export { MultiplayerAPIExtension } from './MultiplayerAPIExtension.ts';
|
|
305
|
+
export { MultiplayerPeer } from './MultiplayerPeer.ts';
|
|
306
|
+
export { NavigationLink3D } from './NavigationLink3D.ts';
|
|
307
|
+
export { NavigationMesh } from './NavigationMesh.ts';
|
|
308
|
+
export { NavigationMeshSourceGeometryData2D } from './NavigationMeshSourceGeometryData2D.ts';
|
|
309
|
+
export { NavigationMeshSourceGeometryData3D } from './NavigationMeshSourceGeometryData3D.ts';
|
|
310
|
+
export { NavigationObstacle3D } from './NavigationObstacle3D.ts';
|
|
311
|
+
export { NavigationPolygon } from './NavigationPolygon.ts';
|
|
312
|
+
export { NavigationRegion3D } from './NavigationRegion3D.ts';
|
|
313
|
+
export { Node2D } from './Node2D.ts';
|
|
314
|
+
export { Noise } from './Noise.ts';
|
|
315
|
+
export { Occluder3D } from './Occluder3D.ts';
|
|
316
|
+
export { OccluderPolygon2D } from './OccluderPolygon2D.ts';
|
|
317
|
+
export { OggPacketSequence } from './OggPacketSequence.ts';
|
|
318
|
+
export { OpenXRAction } from './OpenXRAction.ts';
|
|
319
|
+
export { OpenXRActionMap } from './OpenXRActionMap.ts';
|
|
320
|
+
export { OpenXRActionSet } from './OpenXRActionSet.ts';
|
|
321
|
+
export { OpenXRBindingModifier } from './OpenXRBindingModifier.ts';
|
|
322
|
+
export { OpenXRCompositionLayer } from './OpenXRCompositionLayer.ts';
|
|
323
|
+
export { OpenXRHand } from './OpenXRHand.ts';
|
|
324
|
+
export { OpenXRHapticBase } from './OpenXRHapticBase.ts';
|
|
325
|
+
export { OpenXRIPBinding } from './OpenXRIPBinding.ts';
|
|
326
|
+
export { OpenXRInteractionProfile } from './OpenXRInteractionProfile.ts';
|
|
327
|
+
export { OpenXRInterface } from './OpenXRInterface.ts';
|
|
328
|
+
export { OpenXRRenderModel } from './OpenXRRenderModel.ts';
|
|
329
|
+
export { OpenXRRenderModelManager } from './OpenXRRenderModelManager.ts';
|
|
330
|
+
export { OpenXRSpatialCapabilityConfigurationAnchor } from './OpenXRSpatialCapabilityConfigurationAnchor.ts';
|
|
331
|
+
export { OpenXRSpatialCapabilityConfigurationAprilTag } from './OpenXRSpatialCapabilityConfigurationAprilTag.ts';
|
|
332
|
+
export { OpenXRSpatialCapabilityConfigurationAruco } from './OpenXRSpatialCapabilityConfigurationAruco.ts';
|
|
333
|
+
export { OpenXRSpatialCapabilityConfigurationMicroQrCode } from './OpenXRSpatialCapabilityConfigurationMicroQrCode.ts';
|
|
334
|
+
export { OpenXRSpatialCapabilityConfigurationPlaneTracking } from './OpenXRSpatialCapabilityConfigurationPlaneTracking.ts';
|
|
335
|
+
export { OpenXRSpatialCapabilityConfigurationQrCode } from './OpenXRSpatialCapabilityConfigurationQrCode.ts';
|
|
336
|
+
export { OpenXRSpatialComponentAnchorList } from './OpenXRSpatialComponentAnchorList.ts';
|
|
337
|
+
export { OpenXRSpatialComponentBounded2DList } from './OpenXRSpatialComponentBounded2DList.ts';
|
|
338
|
+
export { OpenXRSpatialComponentBounded3DList } from './OpenXRSpatialComponentBounded3DList.ts';
|
|
339
|
+
export { OpenXRSpatialComponentMarkerList } from './OpenXRSpatialComponentMarkerList.ts';
|
|
340
|
+
export { OpenXRSpatialComponentMesh2DList } from './OpenXRSpatialComponentMesh2DList.ts';
|
|
341
|
+
export { OpenXRSpatialComponentMesh3DList } from './OpenXRSpatialComponentMesh3DList.ts';
|
|
342
|
+
export { OpenXRSpatialComponentParentList } from './OpenXRSpatialComponentParentList.ts';
|
|
343
|
+
export { OpenXRSpatialComponentPersistenceList } from './OpenXRSpatialComponentPersistenceList.ts';
|
|
344
|
+
export { OpenXRSpatialComponentPlaneAlignmentList } from './OpenXRSpatialComponentPlaneAlignmentList.ts';
|
|
345
|
+
export { OpenXRSpatialComponentPlaneSemanticLabelList } from './OpenXRSpatialComponentPlaneSemanticLabelList.ts';
|
|
346
|
+
export { OpenXRSpatialComponentPolygon2DList } from './OpenXRSpatialComponentPolygon2DList.ts';
|
|
347
|
+
export { OpenXRSpatialContextPersistenceConfig } from './OpenXRSpatialContextPersistenceConfig.ts';
|
|
348
|
+
export { OpenXRSpatialQueryResultData } from './OpenXRSpatialQueryResultData.ts';
|
|
349
|
+
export { PackedDataContainer } from './PackedDataContainer.ts';
|
|
350
|
+
export { PackedScene } from './PackedScene.ts';
|
|
351
|
+
export { PacketPeerDTLS } from './PacketPeerDTLS.ts';
|
|
352
|
+
export { PacketPeerExtension } from './PacketPeerExtension.ts';
|
|
353
|
+
export { PacketPeerStream } from './PacketPeerStream.ts';
|
|
354
|
+
export { PacketPeerUDP } from './PacketPeerUDP.ts';
|
|
355
|
+
export { ParallaxBackground } from './ParallaxBackground.ts';
|
|
356
|
+
export { Path3D } from './Path3D.ts';
|
|
357
|
+
export { PathFollow3D } from './PathFollow3D.ts';
|
|
358
|
+
export { PhysicsMaterial } from './PhysicsMaterial.ts';
|
|
359
|
+
export { PolygonPathFinder } from './PolygonPathFinder.ts';
|
|
360
|
+
export { PropertyTweener } from './PropertyTweener.ts';
|
|
361
|
+
export { RDShaderFile } from './RDShaderFile.ts';
|
|
362
|
+
export { RDShaderSPIRV } from './RDShaderSPIRV.ts';
|
|
363
|
+
export { RayCast3D } from './RayCast3D.ts';
|
|
364
|
+
export { RemoteTransform3D } from './RemoteTransform3D.ts';
|
|
365
|
+
export { RenderSceneBuffersExtension } from './RenderSceneBuffersExtension.ts';
|
|
366
|
+
export { RenderSceneBuffersRD } from './RenderSceneBuffersRD.ts';
|
|
367
|
+
export { RichTextEffect } from './RichTextEffect.ts';
|
|
368
|
+
export { SceneMultiplayer } from './SceneMultiplayer.ts';
|
|
369
|
+
export { SceneReplicationConfig } from './SceneReplicationConfig.ts';
|
|
370
|
+
export { Script } from './Script.ts';
|
|
371
|
+
export { Shader } from './Shader.ts';
|
|
372
|
+
export { ShaderInclude } from './ShaderInclude.ts';
|
|
373
|
+
export { Shape2D } from './Shape2D.ts';
|
|
374
|
+
export { Shape3D } from './Shape3D.ts';
|
|
375
|
+
export { ShapeCast3D } from './ShapeCast3D.ts';
|
|
376
|
+
export { Shortcut } from './Shortcut.ts';
|
|
377
|
+
export { Skeleton3D } from './Skeleton3D.ts';
|
|
378
|
+
export { SkeletonModification2D } from './SkeletonModification2D.ts';
|
|
379
|
+
export { SkeletonModificationStack2D } from './SkeletonModificationStack2D.ts';
|
|
380
|
+
export { SkeletonModifier3D } from './SkeletonModifier3D.ts';
|
|
381
|
+
export { SkeletonProfile } from './SkeletonProfile.ts';
|
|
382
|
+
export { Skin } from './Skin.ts';
|
|
383
|
+
export { Sky } from './Sky.ts';
|
|
384
|
+
export { SpringArm3D } from './SpringArm3D.ts';
|
|
385
|
+
export { SpringBoneCollision3D } from './SpringBoneCollision3D.ts';
|
|
386
|
+
export { SpriteFrames } from './SpriteFrames.ts';
|
|
387
|
+
export { StreamPeerBuffer } from './StreamPeerBuffer.ts';
|
|
388
|
+
export { StreamPeerExtension } from './StreamPeerExtension.ts';
|
|
389
|
+
export { StreamPeerGZIP } from './StreamPeerGZIP.ts';
|
|
390
|
+
export { StreamPeerSocket } from './StreamPeerSocket.ts';
|
|
391
|
+
export { StreamPeerTLS } from './StreamPeerTLS.ts';
|
|
392
|
+
export { StyleBox } from './StyleBox.ts';
|
|
393
|
+
export { SubViewport } from './SubViewport.ts';
|
|
394
|
+
export { SubtweenTweener } from './SubtweenTweener.ts';
|
|
395
|
+
export { SyntaxHighlighter } from './SyntaxHighlighter.ts';
|
|
396
|
+
export { TCPServer } from './TCPServer.ts';
|
|
397
|
+
export { TextServerExtension } from './TextServerExtension.ts';
|
|
398
|
+
export { Texture } from './Texture.ts';
|
|
399
|
+
export { Theme } from './Theme.ts';
|
|
400
|
+
export { TileMapPattern } from './TileMapPattern.ts';
|
|
401
|
+
export { TileSet } from './TileSet.ts';
|
|
402
|
+
export { TileSetSource } from './TileSetSource.ts';
|
|
403
|
+
export { Translation } from './Translation.ts';
|
|
404
|
+
export { UDSServer } from './UDSServer.ts';
|
|
405
|
+
export { VehicleWheel3D } from './VehicleWheel3D.ts';
|
|
406
|
+
export { VideoStream } from './VideoStream.ts';
|
|
407
|
+
export { VideoStreamPlayback } from './VideoStreamPlayback.ts';
|
|
408
|
+
export { VisualInstance3D } from './VisualInstance3D.ts';
|
|
409
|
+
export { VisualShaderNode } from './VisualShaderNode.ts';
|
|
410
|
+
export { VoxelGIData } from './VoxelGIData.ts';
|
|
411
|
+
export { WebRTCDataChannel } from './WebRTCDataChannel.ts';
|
|
412
|
+
export { WebRTCPeerConnectionExtension } from './WebRTCPeerConnectionExtension.ts';
|
|
413
|
+
export { WebSocketPeer } from './WebSocketPeer.ts';
|
|
414
|
+
export { WebXRInterface } from './WebXRInterface.ts';
|
|
415
|
+
export { Window } from './Window.ts';
|
|
416
|
+
export { World2D } from './World2D.ts';
|
|
417
|
+
export { World3D } from './World3D.ts';
|
|
418
|
+
export { X509Certificate } from './X509Certificate.ts';
|
|
419
|
+
export { XRFaceModifier3D } from './XRFaceModifier3D.ts';
|
|
420
|
+
export { XRFaceTracker } from './XRFaceTracker.ts';
|
|
421
|
+
export { XRInterfaceExtension } from './XRInterfaceExtension.ts';
|
|
422
|
+
export { XRNode3D } from './XRNode3D.ts';
|
|
423
|
+
export { XROrigin3D } from './XROrigin3D.ts';
|
|
424
|
+
export { XRPositionalTracker } from './XRPositionalTracker.ts';
|
|
425
|
+
export { AcceptDialog } from './AcceptDialog.ts';
|
|
426
|
+
export { AnimatedSprite2D } from './AnimatedSprite2D.ts';
|
|
427
|
+
export { AnimationNodeExtension } from './AnimationNodeExtension.ts';
|
|
428
|
+
export { AnimationNodeOutput } from './AnimationNodeOutput.ts';
|
|
429
|
+
export { AnimationNodeSync } from './AnimationNodeSync.ts';
|
|
430
|
+
export { AnimationNodeTimeScale } from './AnimationNodeTimeScale.ts';
|
|
431
|
+
export { AnimationNodeTimeSeek } from './AnimationNodeTimeSeek.ts';
|
|
432
|
+
export { AnimationRootNode } from './AnimationRootNode.ts';
|
|
433
|
+
export { Area3D } from './Area3D.ts';
|
|
434
|
+
export { ArrayMesh } from './ArrayMesh.ts';
|
|
435
|
+
export { ArrayOccluder3D } from './ArrayOccluder3D.ts';
|
|
436
|
+
export { AudioEffectAmplify } from './AudioEffectAmplify.ts';
|
|
437
|
+
export { AudioEffectCapture } from './AudioEffectCapture.ts';
|
|
438
|
+
export { AudioEffectChorus } from './AudioEffectChorus.ts';
|
|
439
|
+
export { AudioEffectCompressor } from './AudioEffectCompressor.ts';
|
|
440
|
+
export { AudioEffectDelay } from './AudioEffectDelay.ts';
|
|
441
|
+
export { AudioEffectDistortion } from './AudioEffectDistortion.ts';
|
|
442
|
+
export { AudioEffectEQ } from './AudioEffectEQ.ts';
|
|
443
|
+
export { AudioEffectFilter } from './AudioEffectFilter.ts';
|
|
444
|
+
export { AudioEffectHardLimiter } from './AudioEffectHardLimiter.ts';
|
|
445
|
+
export { AudioEffectLimiter } from './AudioEffectLimiter.ts';
|
|
446
|
+
export { AudioEffectPanner } from './AudioEffectPanner.ts';
|
|
447
|
+
export { AudioEffectPhaser } from './AudioEffectPhaser.ts';
|
|
448
|
+
export { AudioEffectPitchShift } from './AudioEffectPitchShift.ts';
|
|
449
|
+
export { AudioEffectRecord } from './AudioEffectRecord.ts';
|
|
450
|
+
export { AudioEffectReverb } from './AudioEffectReverb.ts';
|
|
451
|
+
export { AudioEffectSpectrumAnalyzer } from './AudioEffectSpectrumAnalyzer.ts';
|
|
452
|
+
export { AudioEffectStereoEnhance } from './AudioEffectStereoEnhance.ts';
|
|
453
|
+
export { AudioListener2D } from './AudioListener2D.ts';
|
|
454
|
+
export { AudioStreamGenerator } from './AudioStreamGenerator.ts';
|
|
455
|
+
export { AudioStreamGeneratorPlayback } from './AudioStreamGeneratorPlayback.ts';
|
|
456
|
+
export { AudioStreamInteractive } from './AudioStreamInteractive.ts';
|
|
457
|
+
export { AudioStreamMP3 } from './AudioStreamMP3.ts';
|
|
458
|
+
export { AudioStreamMicrophone } from './AudioStreamMicrophone.ts';
|
|
459
|
+
export { AudioStreamOggVorbis } from './AudioStreamOggVorbis.ts';
|
|
460
|
+
export { AudioStreamPlaybackOggVorbis } from './AudioStreamPlaybackOggVorbis.ts';
|
|
461
|
+
export { AudioStreamPlayer2D } from './AudioStreamPlayer2D.ts';
|
|
462
|
+
export { AudioStreamPlaylist } from './AudioStreamPlaylist.ts';
|
|
463
|
+
export { AudioStreamPolyphonic } from './AudioStreamPolyphonic.ts';
|
|
464
|
+
export { AudioStreamRandomizer } from './AudioStreamRandomizer.ts';
|
|
465
|
+
export { AudioStreamSynchronized } from './AudioStreamSynchronized.ts';
|
|
466
|
+
export { AudioStreamWAV } from './AudioStreamWAV.ts';
|
|
467
|
+
export { BackBufferCopy } from './BackBufferCopy.ts';
|
|
468
|
+
export { BaseButton } from './BaseButton.ts';
|
|
469
|
+
export { BaseMaterial3D } from './BaseMaterial3D.ts';
|
|
470
|
+
export { BlitMaterial } from './BlitMaterial.ts';
|
|
471
|
+
export { Bone2D } from './Bone2D.ts';
|
|
472
|
+
export { BoneConstraint3D } from './BoneConstraint3D.ts';
|
|
473
|
+
export { BoneTwistDisperser3D } from './BoneTwistDisperser3D.ts';
|
|
474
|
+
export { BoxOccluder3D } from './BoxOccluder3D.ts';
|
|
475
|
+
export { BoxShape3D } from './BoxShape3D.ts';
|
|
476
|
+
export { CPUParticles2D } from './CPUParticles2D.ts';
|
|
477
|
+
export { Camera2D } from './Camera2D.ts';
|
|
478
|
+
export { CameraAttributesPhysical } from './CameraAttributesPhysical.ts';
|
|
479
|
+
export { CameraAttributesPractical } from './CameraAttributesPractical.ts';
|
|
480
|
+
export { CanvasGroup } from './CanvasGroup.ts';
|
|
481
|
+
export { CanvasItemMaterial } from './CanvasItemMaterial.ts';
|
|
482
|
+
export { CanvasModulate } from './CanvasModulate.ts';
|
|
483
|
+
export { CapsuleShape2D } from './CapsuleShape2D.ts';
|
|
484
|
+
export { CapsuleShape3D } from './CapsuleShape3D.ts';
|
|
485
|
+
export { CircleShape2D } from './CircleShape2D.ts';
|
|
486
|
+
export { CodeHighlighter } from './CodeHighlighter.ts';
|
|
487
|
+
export { CollisionObject2D } from './CollisionObject2D.ts';
|
|
488
|
+
export { CollisionPolygon2D } from './CollisionPolygon2D.ts';
|
|
489
|
+
export { CollisionShape2D } from './CollisionShape2D.ts';
|
|
490
|
+
export { ColorRect } from './ColorRect.ts';
|
|
491
|
+
export { ConcavePolygonShape2D } from './ConcavePolygonShape2D.ts';
|
|
492
|
+
export { ConcavePolygonShape3D } from './ConcavePolygonShape3D.ts';
|
|
493
|
+
export { ConeTwistJoint3D } from './ConeTwistJoint3D.ts';
|
|
494
|
+
export { Container } from './Container.ts';
|
|
495
|
+
export { ConvexPolygonShape2D } from './ConvexPolygonShape2D.ts';
|
|
496
|
+
export { ConvexPolygonShape3D } from './ConvexPolygonShape3D.ts';
|
|
497
|
+
export { CylinderShape3D } from './CylinderShape3D.ts';
|
|
498
|
+
export { Decal } from './Decal.ts';
|
|
499
|
+
export { ENetMultiplayerPeer } from './ENetMultiplayerPeer.ts';
|
|
500
|
+
export { FBXDocument } from './FBXDocument.ts';
|
|
501
|
+
export { FBXState } from './FBXState.ts';
|
|
502
|
+
export { FastNoiseLite } from './FastNoiseLite.ts';
|
|
503
|
+
export { FogMaterial } from './FogMaterial.ts';
|
|
504
|
+
export { FogVolume } from './FogVolume.ts';
|
|
505
|
+
export { FontFile } from './FontFile.ts';
|
|
506
|
+
export { FontVariation } from './FontVariation.ts';
|
|
507
|
+
export { GDScript } from './GDScript.ts';
|
|
508
|
+
export { GLTFDocumentExtensionConvertImporterMesh } from './GLTFDocumentExtensionConvertImporterMesh.ts';
|
|
509
|
+
export { GPUParticles2D } from './GPUParticles2D.ts';
|
|
510
|
+
export { GPUParticlesAttractor3D } from './GPUParticlesAttractor3D.ts';
|
|
511
|
+
export { GPUParticlesCollision3D } from './GPUParticlesCollision3D.ts';
|
|
512
|
+
export { Generic6DOFJoint3D } from './Generic6DOFJoint3D.ts';
|
|
513
|
+
export { GeometryInstance3D } from './GeometryInstance3D.ts';
|
|
514
|
+
export { GraphEdit } from './GraphEdit.ts';
|
|
515
|
+
export { HeightMapShape3D } from './HeightMapShape3D.ts';
|
|
516
|
+
export { HingeJoint3D } from './HingeJoint3D.ts';
|
|
517
|
+
export { IKModifier3D } from './IKModifier3D.ts';
|
|
518
|
+
export { ImmediateMesh } from './ImmediateMesh.ts';
|
|
519
|
+
export { InputEventAction } from './InputEventAction.ts';
|
|
520
|
+
export { InputEventFromWindow } from './InputEventFromWindow.ts';
|
|
521
|
+
export { InputEventJoypadButton } from './InputEventJoypadButton.ts';
|
|
522
|
+
export { InputEventJoypadMotion } from './InputEventJoypadMotion.ts';
|
|
523
|
+
export { InputEventMIDI } from './InputEventMIDI.ts';
|
|
524
|
+
export { InputEventShortcut } from './InputEventShortcut.ts';
|
|
525
|
+
export { ItemList } from './ItemList.ts';
|
|
526
|
+
export { Joint2D } from './Joint2D.ts';
|
|
527
|
+
export { JointLimitationCone3D } from './JointLimitationCone3D.ts';
|
|
528
|
+
export { Label } from './Label.ts';
|
|
529
|
+
export { Light2D } from './Light2D.ts';
|
|
530
|
+
export { Light3D } from './Light3D.ts';
|
|
531
|
+
export { LightOccluder2D } from './LightOccluder2D.ts';
|
|
532
|
+
export { LightmapGI } from './LightmapGI.ts';
|
|
533
|
+
export { LimitAngularVelocityModifier3D } from './LimitAngularVelocityModifier3D.ts';
|
|
534
|
+
export { Line2D } from './Line2D.ts';
|
|
535
|
+
export { LineEdit } from './LineEdit.ts';
|
|
536
|
+
export { LookAtModifier3D } from './LookAtModifier3D.ts';
|
|
537
|
+
export { Marker2D } from './Marker2D.ts';
|
|
538
|
+
export { MenuBar } from './MenuBar.ts';
|
|
539
|
+
export { MeshInstance2D } from './MeshInstance2D.ts';
|
|
540
|
+
export { ModifierBoneTarget3D } from './ModifierBoneTarget3D.ts';
|
|
541
|
+
export { MultiMeshInstance2D } from './MultiMeshInstance2D.ts';
|
|
542
|
+
export { MultiplayerPeerExtension } from './MultiplayerPeerExtension.ts';
|
|
543
|
+
export { NavigationLink2D } from './NavigationLink2D.ts';
|
|
544
|
+
export { NavigationObstacle2D } from './NavigationObstacle2D.ts';
|
|
545
|
+
export { NavigationRegion2D } from './NavigationRegion2D.ts';
|
|
546
|
+
export { NinePatchRect } from './NinePatchRect.ts';
|
|
547
|
+
export { OccluderInstance3D } from './OccluderInstance3D.ts';
|
|
548
|
+
export { OfflineMultiplayerPeer } from './OfflineMultiplayerPeer.ts';
|
|
549
|
+
export { OpenXRActionBindingModifier } from './OpenXRActionBindingModifier.ts';
|
|
550
|
+
export { OpenXRCompositionLayerCylinder } from './OpenXRCompositionLayerCylinder.ts';
|
|
551
|
+
export { OpenXRCompositionLayerEquirect } from './OpenXRCompositionLayerEquirect.ts';
|
|
552
|
+
export { OpenXRCompositionLayerQuad } from './OpenXRCompositionLayerQuad.ts';
|
|
553
|
+
export { OpenXRHapticVibration } from './OpenXRHapticVibration.ts';
|
|
554
|
+
export { OpenXRIPBindingModifier } from './OpenXRIPBindingModifier.ts';
|
|
555
|
+
export { OpenXRSpatialEntityTracker } from './OpenXRSpatialEntityTracker.ts';
|
|
556
|
+
export { OpenXRVisibilityMask } from './OpenXRVisibilityMask.ts';
|
|
557
|
+
export { OptimizedTranslation } from './OptimizedTranslation.ts';
|
|
558
|
+
export { Panel } from './Panel.ts';
|
|
559
|
+
export { PanoramaSkyMaterial } from './PanoramaSkyMaterial.ts';
|
|
560
|
+
export { Parallax2D } from './Parallax2D.ts';
|
|
561
|
+
export { ParallaxLayer } from './ParallaxLayer.ts';
|
|
562
|
+
export { ParticleProcessMaterial } from './ParticleProcessMaterial.ts';
|
|
563
|
+
export { Path2D } from './Path2D.ts';
|
|
564
|
+
export { PathFollow2D } from './PathFollow2D.ts';
|
|
565
|
+
export { PhysicalBoneSimulator3D } from './PhysicalBoneSimulator3D.ts';
|
|
566
|
+
export { PhysicalSkyMaterial } from './PhysicalSkyMaterial.ts';
|
|
567
|
+
export { PhysicsBody3D } from './PhysicsBody3D.ts';
|
|
568
|
+
export { PinJoint3D } from './PinJoint3D.ts';
|
|
569
|
+
export { PlaceholderMaterial } from './PlaceholderMaterial.ts';
|
|
570
|
+
export { PlaceholderMesh } from './PlaceholderMesh.ts';
|
|
571
|
+
export { Polygon2D } from './Polygon2D.ts';
|
|
572
|
+
export { PolygonOccluder3D } from './PolygonOccluder3D.ts';
|
|
573
|
+
export { Popup } from './Popup.ts';
|
|
574
|
+
export { PrimitiveMesh } from './PrimitiveMesh.ts';
|
|
575
|
+
export { ProceduralSkyMaterial } from './ProceduralSkyMaterial.ts';
|
|
576
|
+
export { QuadOccluder3D } from './QuadOccluder3D.ts';
|
|
577
|
+
export { Range } from './Range.ts';
|
|
578
|
+
export { RayCast2D } from './RayCast2D.ts';
|
|
579
|
+
export { RectangleShape2D } from './RectangleShape2D.ts';
|
|
580
|
+
export { ReferenceRect } from './ReferenceRect.ts';
|
|
581
|
+
export { ReflectionProbe } from './ReflectionProbe.ts';
|
|
582
|
+
export { RemoteTransform2D } from './RemoteTransform2D.ts';
|
|
583
|
+
export { RetargetModifier3D } from './RetargetModifier3D.ts';
|
|
584
|
+
export { RichTextLabel } from './RichTextLabel.ts';
|
|
585
|
+
export { RootMotionView } from './RootMotionView.ts';
|
|
586
|
+
export { ScriptExtension } from './ScriptExtension.ts';
|
|
587
|
+
export { SegmentShape2D } from './SegmentShape2D.ts';
|
|
588
|
+
export { SeparationRayShape2D } from './SeparationRayShape2D.ts';
|
|
589
|
+
export { SeparationRayShape3D } from './SeparationRayShape3D.ts';
|
|
590
|
+
export { Separator } from './Separator.ts';
|
|
591
|
+
export { ShaderMaterial } from './ShaderMaterial.ts';
|
|
592
|
+
export { ShapeCast2D } from './ShapeCast2D.ts';
|
|
593
|
+
export { Skeleton2D } from './Skeleton2D.ts';
|
|
594
|
+
export { SkeletonIK3D } from './SkeletonIK3D.ts';
|
|
595
|
+
export { SkeletonModification2DCCDIK } from './SkeletonModification2DCCDIK.ts';
|
|
596
|
+
export { SkeletonModification2DFABRIK } from './SkeletonModification2DFABRIK.ts';
|
|
597
|
+
export { SkeletonModification2DJiggle } from './SkeletonModification2DJiggle.ts';
|
|
598
|
+
export { SkeletonModification2DLookAt } from './SkeletonModification2DLookAt.ts';
|
|
599
|
+
export { SkeletonModification2DPhysicalBones } from './SkeletonModification2DPhysicalBones.ts';
|
|
600
|
+
export { SkeletonModification2DStackHolder } from './SkeletonModification2DStackHolder.ts';
|
|
601
|
+
export { SkeletonModification2DTwoBoneIK } from './SkeletonModification2DTwoBoneIK.ts';
|
|
602
|
+
export { SkeletonProfileHumanoid } from './SkeletonProfileHumanoid.ts';
|
|
603
|
+
export { SliderJoint3D } from './SliderJoint3D.ts';
|
|
604
|
+
export { SphereOccluder3D } from './SphereOccluder3D.ts';
|
|
605
|
+
export { SphereShape3D } from './SphereShape3D.ts';
|
|
606
|
+
export { SpringBoneCollisionCapsule3D } from './SpringBoneCollisionCapsule3D.ts';
|
|
607
|
+
export { SpringBoneCollisionPlane3D } from './SpringBoneCollisionPlane3D.ts';
|
|
608
|
+
export { SpringBoneCollisionSphere3D } from './SpringBoneCollisionSphere3D.ts';
|
|
609
|
+
export { SpringBoneSimulator3D } from './SpringBoneSimulator3D.ts';
|
|
610
|
+
export { Sprite2D } from './Sprite2D.ts';
|
|
611
|
+
export { StreamPeerTCP } from './StreamPeerTCP.ts';
|
|
612
|
+
export { StreamPeerUDS } from './StreamPeerUDS.ts';
|
|
613
|
+
export { StyleBoxEmpty } from './StyleBoxEmpty.ts';
|
|
614
|
+
export { StyleBoxFlat } from './StyleBoxFlat.ts';
|
|
615
|
+
export { StyleBoxLine } from './StyleBoxLine.ts';
|
|
616
|
+
export { StyleBoxTexture } from './StyleBoxTexture.ts';
|
|
617
|
+
export { SystemFont } from './SystemFont.ts';
|
|
618
|
+
export { TabBar } from './TabBar.ts';
|
|
619
|
+
export { TextEdit } from './TextEdit.ts';
|
|
620
|
+
export { TextServerAdvanced } from './TextServerAdvanced.ts';
|
|
621
|
+
export { TextServerDummy } from './TextServerDummy.ts';
|
|
622
|
+
export { Texture2D } from './Texture2D.ts';
|
|
623
|
+
export { Texture3D } from './Texture3D.ts';
|
|
624
|
+
export { TextureLayered } from './TextureLayered.ts';
|
|
625
|
+
export { TextureRect } from './TextureRect.ts';
|
|
626
|
+
export { TileMap } from './TileMap.ts';
|
|
627
|
+
export { TileMapLayer } from './TileMapLayer.ts';
|
|
628
|
+
export { TileSetAtlasSource } from './TileSetAtlasSource.ts';
|
|
629
|
+
export { TileSetScenesCollectionSource } from './TileSetScenesCollectionSource.ts';
|
|
630
|
+
export { TouchScreenButton } from './TouchScreenButton.ts';
|
|
631
|
+
export { Tree } from './Tree.ts';
|
|
632
|
+
export { VideoStreamPlayer } from './VideoStreamPlayer.ts';
|
|
633
|
+
export { VideoStreamTheora } from './VideoStreamTheora.ts';
|
|
634
|
+
export { VirtualJoystick } from './VirtualJoystick.ts';
|
|
635
|
+
export { VisibleOnScreenNotifier2D } from './VisibleOnScreenNotifier2D.ts';
|
|
636
|
+
export { VisibleOnScreenNotifier3D } from './VisibleOnScreenNotifier3D.ts';
|
|
637
|
+
export { VisualShader } from './VisualShader.ts';
|
|
638
|
+
export { VisualShaderNodeBillboard } from './VisualShaderNodeBillboard.ts';
|
|
639
|
+
export { VisualShaderNodeClamp } from './VisualShaderNodeClamp.ts';
|
|
640
|
+
export { VisualShaderNodeColorFunc } from './VisualShaderNodeColorFunc.ts';
|
|
641
|
+
export { VisualShaderNodeColorOp } from './VisualShaderNodeColorOp.ts';
|
|
642
|
+
export { VisualShaderNodeCompare } from './VisualShaderNodeCompare.ts';
|
|
643
|
+
export { VisualShaderNodeConstant } from './VisualShaderNodeConstant.ts';
|
|
644
|
+
export { VisualShaderNodeCubemap } from './VisualShaderNodeCubemap.ts';
|
|
645
|
+
export { VisualShaderNodeCustom } from './VisualShaderNodeCustom.ts';
|
|
646
|
+
export { VisualShaderNodeDerivativeFunc } from './VisualShaderNodeDerivativeFunc.ts';
|
|
647
|
+
export { VisualShaderNodeDeterminant } from './VisualShaderNodeDeterminant.ts';
|
|
648
|
+
export { VisualShaderNodeDistanceFade } from './VisualShaderNodeDistanceFade.ts';
|
|
649
|
+
export { VisualShaderNodeDotProduct } from './VisualShaderNodeDotProduct.ts';
|
|
650
|
+
export { VisualShaderNodeFloatFunc } from './VisualShaderNodeFloatFunc.ts';
|
|
651
|
+
export { VisualShaderNodeFloatOp } from './VisualShaderNodeFloatOp.ts';
|
|
652
|
+
export { VisualShaderNodeFresnel } from './VisualShaderNodeFresnel.ts';
|
|
653
|
+
export { VisualShaderNodeIf } from './VisualShaderNodeIf.ts';
|
|
654
|
+
export { VisualShaderNodeInput } from './VisualShaderNodeInput.ts';
|
|
655
|
+
export { VisualShaderNodeIntFunc } from './VisualShaderNodeIntFunc.ts';
|
|
656
|
+
export { VisualShaderNodeIntOp } from './VisualShaderNodeIntOp.ts';
|
|
657
|
+
export { VisualShaderNodeIs } from './VisualShaderNodeIs.ts';
|
|
658
|
+
export { VisualShaderNodeLinearSceneDepth } from './VisualShaderNodeLinearSceneDepth.ts';
|
|
659
|
+
export { VisualShaderNodeMix } from './VisualShaderNodeMix.ts';
|
|
660
|
+
export { VisualShaderNodeMultiplyAdd } from './VisualShaderNodeMultiplyAdd.ts';
|
|
661
|
+
export { VisualShaderNodeOuterProduct } from './VisualShaderNodeOuterProduct.ts';
|
|
662
|
+
export { VisualShaderNodeOutput } from './VisualShaderNodeOutput.ts';
|
|
663
|
+
export { VisualShaderNodeParameter } from './VisualShaderNodeParameter.ts';
|
|
664
|
+
export { VisualShaderNodeParameterRef } from './VisualShaderNodeParameterRef.ts';
|
|
665
|
+
export { VisualShaderNodeParticleAccelerator } from './VisualShaderNodeParticleAccelerator.ts';
|
|
666
|
+
export { VisualShaderNodeParticleConeVelocity } from './VisualShaderNodeParticleConeVelocity.ts';
|
|
667
|
+
export { VisualShaderNodeParticleEmit } from './VisualShaderNodeParticleEmit.ts';
|
|
668
|
+
export { VisualShaderNodeParticleEmitter } from './VisualShaderNodeParticleEmitter.ts';
|
|
669
|
+
export { VisualShaderNodeParticleMultiplyByAxisAngle } from './VisualShaderNodeParticleMultiplyByAxisAngle.ts';
|
|
670
|
+
export { VisualShaderNodeParticleRandomness } from './VisualShaderNodeParticleRandomness.ts';
|
|
671
|
+
export { VisualShaderNodeProximityFade } from './VisualShaderNodeProximityFade.ts';
|
|
672
|
+
export { VisualShaderNodeRandomRange } from './VisualShaderNodeRandomRange.ts';
|
|
673
|
+
export { VisualShaderNodeRemap } from './VisualShaderNodeRemap.ts';
|
|
674
|
+
export { VisualShaderNodeReroute } from './VisualShaderNodeReroute.ts';
|
|
675
|
+
export { VisualShaderNodeResizableBase } from './VisualShaderNodeResizableBase.ts';
|
|
676
|
+
export { VisualShaderNodeRotationByAxis } from './VisualShaderNodeRotationByAxis.ts';
|
|
677
|
+
export { VisualShaderNodeSDFRaymarch } from './VisualShaderNodeSDFRaymarch.ts';
|
|
678
|
+
export { VisualShaderNodeSDFToScreenUV } from './VisualShaderNodeSDFToScreenUV.ts';
|
|
679
|
+
export { VisualShaderNodeSample3D } from './VisualShaderNodeSample3D.ts';
|
|
680
|
+
export { VisualShaderNodeScreenNormalWorldSpace } from './VisualShaderNodeScreenNormalWorldSpace.ts';
|
|
681
|
+
export { VisualShaderNodeScreenUVToSDF } from './VisualShaderNodeScreenUVToSDF.ts';
|
|
682
|
+
export { VisualShaderNodeSmoothStep } from './VisualShaderNodeSmoothStep.ts';
|
|
683
|
+
export { VisualShaderNodeStep } from './VisualShaderNodeStep.ts';
|
|
684
|
+
export { VisualShaderNodeSwitch } from './VisualShaderNodeSwitch.ts';
|
|
685
|
+
export { VisualShaderNodeTexture } from './VisualShaderNodeTexture.ts';
|
|
686
|
+
export { VisualShaderNodeTextureSDF } from './VisualShaderNodeTextureSDF.ts';
|
|
687
|
+
export { VisualShaderNodeTextureSDFNormal } from './VisualShaderNodeTextureSDFNormal.ts';
|
|
688
|
+
export { VisualShaderNodeTransformCompose } from './VisualShaderNodeTransformCompose.ts';
|
|
689
|
+
export { VisualShaderNodeTransformDecompose } from './VisualShaderNodeTransformDecompose.ts';
|
|
690
|
+
export { VisualShaderNodeTransformFunc } from './VisualShaderNodeTransformFunc.ts';
|
|
691
|
+
export { VisualShaderNodeTransformOp } from './VisualShaderNodeTransformOp.ts';
|
|
692
|
+
export { VisualShaderNodeTransformVecMult } from './VisualShaderNodeTransformVecMult.ts';
|
|
693
|
+
export { VisualShaderNodeUIntFunc } from './VisualShaderNodeUIntFunc.ts';
|
|
694
|
+
export { VisualShaderNodeUIntOp } from './VisualShaderNodeUIntOp.ts';
|
|
695
|
+
export { VisualShaderNodeUVFunc } from './VisualShaderNodeUVFunc.ts';
|
|
696
|
+
export { VisualShaderNodeUVPolarCoord } from './VisualShaderNodeUVPolarCoord.ts';
|
|
697
|
+
export { VisualShaderNodeVarying } from './VisualShaderNodeVarying.ts';
|
|
698
|
+
export { VisualShaderNodeVectorBase } from './VisualShaderNodeVectorBase.ts';
|
|
699
|
+
export { VisualShaderNodeWorldPositionFromDepth } from './VisualShaderNodeWorldPositionFromDepth.ts';
|
|
700
|
+
export { VoxelGI } from './VoxelGI.ts';
|
|
701
|
+
export { WebRTCDataChannelExtension } from './WebRTCDataChannelExtension.ts';
|
|
702
|
+
export { WebRTCMultiplayerPeer } from './WebRTCMultiplayerPeer.ts';
|
|
703
|
+
export { WebSocketMultiplayerPeer } from './WebSocketMultiplayerPeer.ts';
|
|
704
|
+
export { WorldBoundaryShape2D } from './WorldBoundaryShape2D.ts';
|
|
705
|
+
export { WorldBoundaryShape3D } from './WorldBoundaryShape3D.ts';
|
|
706
|
+
export { XRAnchor3D } from './XRAnchor3D.ts';
|
|
707
|
+
export { XRBodyModifier3D } from './XRBodyModifier3D.ts';
|
|
708
|
+
export { XRBodyTracker } from './XRBodyTracker.ts';
|
|
709
|
+
export { XRCamera3D } from './XRCamera3D.ts';
|
|
710
|
+
export { XRController3D } from './XRController3D.ts';
|
|
711
|
+
export { XRControllerTracker } from './XRControllerTracker.ts';
|
|
712
|
+
export { XRHandModifier3D } from './XRHandModifier3D.ts';
|
|
713
|
+
export { XRHandTracker } from './XRHandTracker.ts';
|
|
714
|
+
export { AimModifier3D } from './AimModifier3D.ts';
|
|
715
|
+
export { AnimatedTexture } from './AnimatedTexture.ts';
|
|
716
|
+
export { AnimationNodeAdd2 } from './AnimationNodeAdd2.ts';
|
|
717
|
+
export { AnimationNodeAdd3 } from './AnimationNodeAdd3.ts';
|
|
718
|
+
export { AnimationNodeAnimation } from './AnimationNodeAnimation.ts';
|
|
719
|
+
export { AnimationNodeBlend2 } from './AnimationNodeBlend2.ts';
|
|
720
|
+
export { AnimationNodeBlend3 } from './AnimationNodeBlend3.ts';
|
|
721
|
+
export { AnimationNodeBlendSpace1D } from './AnimationNodeBlendSpace1D.ts';
|
|
722
|
+
export { AnimationNodeBlendSpace2D } from './AnimationNodeBlendSpace2D.ts';
|
|
723
|
+
export { AnimationNodeBlendTree } from './AnimationNodeBlendTree.ts';
|
|
724
|
+
export { AnimationNodeOneShot } from './AnimationNodeOneShot.ts';
|
|
725
|
+
export { AnimationNodeStateMachine } from './AnimationNodeStateMachine.ts';
|
|
726
|
+
export { AnimationNodeSub2 } from './AnimationNodeSub2.ts';
|
|
727
|
+
export { AnimationNodeTransition } from './AnimationNodeTransition.ts';
|
|
728
|
+
export { Area2D } from './Area2D.ts';
|
|
729
|
+
export { AreaLight3D } from './AreaLight3D.ts';
|
|
730
|
+
export { AspectRatioContainer } from './AspectRatioContainer.ts';
|
|
731
|
+
export { AtlasTexture } from './AtlasTexture.ts';
|
|
732
|
+
export { AudioEffectBandLimitFilter } from './AudioEffectBandLimitFilter.ts';
|
|
733
|
+
export { AudioEffectBandPassFilter } from './AudioEffectBandPassFilter.ts';
|
|
734
|
+
export { AudioEffectEQ10 } from './AudioEffectEQ10.ts';
|
|
735
|
+
export { AudioEffectEQ21 } from './AudioEffectEQ21.ts';
|
|
736
|
+
export { AudioEffectEQ6 } from './AudioEffectEQ6.ts';
|
|
737
|
+
export { AudioEffectHighPassFilter } from './AudioEffectHighPassFilter.ts';
|
|
738
|
+
export { AudioEffectHighShelfFilter } from './AudioEffectHighShelfFilter.ts';
|
|
739
|
+
export { AudioEffectLowPassFilter } from './AudioEffectLowPassFilter.ts';
|
|
740
|
+
export { AudioEffectLowShelfFilter } from './AudioEffectLowShelfFilter.ts';
|
|
741
|
+
export { AudioEffectNotchFilter } from './AudioEffectNotchFilter.ts';
|
|
742
|
+
export { BoxContainer } from './BoxContainer.ts';
|
|
743
|
+
export { BoxMesh } from './BoxMesh.ts';
|
|
744
|
+
export { Button } from './Button.ts';
|
|
745
|
+
export { CPUParticles3D } from './CPUParticles3D.ts';
|
|
746
|
+
export { CSGShape3D } from './CSGShape3D.ts';
|
|
747
|
+
export { CameraTexture } from './CameraTexture.ts';
|
|
748
|
+
export { CanvasTexture } from './CanvasTexture.ts';
|
|
749
|
+
export { CapsuleMesh } from './CapsuleMesh.ts';
|
|
750
|
+
export { CenterContainer } from './CenterContainer.ts';
|
|
751
|
+
export { ChainIK3D } from './ChainIK3D.ts';
|
|
752
|
+
export { CharacterBody3D } from './CharacterBody3D.ts';
|
|
753
|
+
export { CodeEdit } from './CodeEdit.ts';
|
|
754
|
+
export { CompressedTexture2D } from './CompressedTexture2D.ts';
|
|
755
|
+
export { CompressedTexture3D } from './CompressedTexture3D.ts';
|
|
756
|
+
export { CompressedTextureLayered } from './CompressedTextureLayered.ts';
|
|
757
|
+
export { ConfirmationDialog } from './ConfirmationDialog.ts';
|
|
758
|
+
export { ConvertTransformModifier3D } from './ConvertTransformModifier3D.ts';
|
|
759
|
+
export { CopyTransformModifier3D } from './CopyTransformModifier3D.ts';
|
|
760
|
+
export { CurveTexture } from './CurveTexture.ts';
|
|
761
|
+
export { CurveXYZTexture } from './CurveXYZTexture.ts';
|
|
762
|
+
export { CylinderMesh } from './CylinderMesh.ts';
|
|
763
|
+
export { DPITexture } from './DPITexture.ts';
|
|
764
|
+
export { DampedSpringJoint2D } from './DampedSpringJoint2D.ts';
|
|
765
|
+
export { DirectionalLight2D } from './DirectionalLight2D.ts';
|
|
766
|
+
export { DirectionalLight3D } from './DirectionalLight3D.ts';
|
|
767
|
+
export { DrawableTexture2D } from './DrawableTexture2D.ts';
|
|
768
|
+
export { ExternalTexture } from './ExternalTexture.ts';
|
|
769
|
+
export { FlowContainer } from './FlowContainer.ts';
|
|
770
|
+
export { FoldableContainer } from './FoldableContainer.ts';
|
|
771
|
+
export { GPUParticles3D } from './GPUParticles3D.ts';
|
|
772
|
+
export { GPUParticlesAttractorBox3D } from './GPUParticlesAttractorBox3D.ts';
|
|
773
|
+
export { GPUParticlesAttractorSphere3D } from './GPUParticlesAttractorSphere3D.ts';
|
|
774
|
+
export { GPUParticlesAttractorVectorField3D } from './GPUParticlesAttractorVectorField3D.ts';
|
|
775
|
+
export { GPUParticlesCollisionBox3D } from './GPUParticlesCollisionBox3D.ts';
|
|
776
|
+
export { GPUParticlesCollisionHeightField3D } from './GPUParticlesCollisionHeightField3D.ts';
|
|
777
|
+
export { GPUParticlesCollisionSDF3D } from './GPUParticlesCollisionSDF3D.ts';
|
|
778
|
+
export { GPUParticlesCollisionSphere3D } from './GPUParticlesCollisionSphere3D.ts';
|
|
779
|
+
export { GradientTexture1D } from './GradientTexture1D.ts';
|
|
780
|
+
export { GradientTexture2D } from './GradientTexture2D.ts';
|
|
781
|
+
export { GraphElement } from './GraphElement.ts';
|
|
782
|
+
export { GridContainer } from './GridContainer.ts';
|
|
783
|
+
export { GrooveJoint2D } from './GrooveJoint2D.ts';
|
|
784
|
+
export { HSeparator } from './HSeparator.ts';
|
|
785
|
+
export { ImageTexture } from './ImageTexture.ts';
|
|
786
|
+
export { ImageTexture3D } from './ImageTexture3D.ts';
|
|
787
|
+
export { ImageTextureLayered } from './ImageTextureLayered.ts';
|
|
788
|
+
export { InputEventScreenDrag } from './InputEventScreenDrag.ts';
|
|
789
|
+
export { InputEventScreenTouch } from './InputEventScreenTouch.ts';
|
|
790
|
+
export { InputEventWithModifiers } from './InputEventWithModifiers.ts';
|
|
791
|
+
export { Label3D } from './Label3D.ts';
|
|
792
|
+
export { LinkButton } from './LinkButton.ts';
|
|
793
|
+
export { MarginContainer } from './MarginContainer.ts';
|
|
794
|
+
export { MeshInstance3D } from './MeshInstance3D.ts';
|
|
795
|
+
export { MeshTexture } from './MeshTexture.ts';
|
|
796
|
+
export { MultiMeshInstance3D } from './MultiMeshInstance3D.ts';
|
|
797
|
+
export { NoiseTexture2D } from './NoiseTexture2D.ts';
|
|
798
|
+
export { NoiseTexture3D } from './NoiseTexture3D.ts';
|
|
799
|
+
export { ORMMaterial3D } from './ORMMaterial3D.ts';
|
|
800
|
+
export { OmniLight3D } from './OmniLight3D.ts';
|
|
801
|
+
export { OpenXRAnalogThresholdModifier } from './OpenXRAnalogThresholdModifier.ts';
|
|
802
|
+
export { OpenXRAnchorTracker } from './OpenXRAnchorTracker.ts';
|
|
803
|
+
export { OpenXRDpadBindingModifier } from './OpenXRDpadBindingModifier.ts';
|
|
804
|
+
export { OpenXRMarkerTracker } from './OpenXRMarkerTracker.ts';
|
|
805
|
+
export { OpenXRPlaneTracker } from './OpenXRPlaneTracker.ts';
|
|
806
|
+
export { PanelContainer } from './PanelContainer.ts';
|
|
807
|
+
export { PhysicalBone3D } from './PhysicalBone3D.ts';
|
|
808
|
+
export { PhysicsBody2D } from './PhysicsBody2D.ts';
|
|
809
|
+
export { PinJoint2D } from './PinJoint2D.ts';
|
|
810
|
+
export { PlaceholderTexture2D } from './PlaceholderTexture2D.ts';
|
|
811
|
+
export { PlaceholderTexture3D } from './PlaceholderTexture3D.ts';
|
|
812
|
+
export { PlaceholderTextureLayered } from './PlaceholderTextureLayered.ts';
|
|
813
|
+
export { PlaneMesh } from './PlaneMesh.ts';
|
|
814
|
+
export { PointLight2D } from './PointLight2D.ts';
|
|
815
|
+
export { PointMesh } from './PointMesh.ts';
|
|
816
|
+
export { PopupMenu } from './PopupMenu.ts';
|
|
817
|
+
export { PopupPanel } from './PopupPanel.ts';
|
|
818
|
+
export { PortableCompressedTexture2D } from './PortableCompressedTexture2D.ts';
|
|
819
|
+
export { PrismMesh } from './PrismMesh.ts';
|
|
820
|
+
export { ProgressBar } from './ProgressBar.ts';
|
|
821
|
+
export { RibbonTrailMesh } from './RibbonTrailMesh.ts';
|
|
822
|
+
export { RigidBody3D } from './RigidBody3D.ts';
|
|
823
|
+
export { ScrollBar } from './ScrollBar.ts';
|
|
824
|
+
export { ScrollContainer } from './ScrollContainer.ts';
|
|
825
|
+
export { Slider } from './Slider.ts';
|
|
826
|
+
export { SphereMesh } from './SphereMesh.ts';
|
|
827
|
+
export { SpinBox } from './SpinBox.ts';
|
|
828
|
+
export { SplitContainer } from './SplitContainer.ts';
|
|
829
|
+
export { SpotLight3D } from './SpotLight3D.ts';
|
|
830
|
+
export { SpriteBase3D } from './SpriteBase3D.ts';
|
|
831
|
+
export { StandardMaterial3D } from './StandardMaterial3D.ts';
|
|
832
|
+
export { StaticBody3D } from './StaticBody3D.ts';
|
|
833
|
+
export { SubViewportContainer } from './SubViewportContainer.ts';
|
|
834
|
+
export { TabContainer } from './TabContainer.ts';
|
|
835
|
+
export { TextMesh } from './TextMesh.ts';
|
|
836
|
+
export { Texture2DRD } from './Texture2DRD.ts';
|
|
837
|
+
export { Texture3DRD } from './Texture3DRD.ts';
|
|
838
|
+
export { TextureButton } from './TextureButton.ts';
|
|
839
|
+
export { TextureLayeredRD } from './TextureLayeredRD.ts';
|
|
840
|
+
export { TextureProgressBar } from './TextureProgressBar.ts';
|
|
841
|
+
export { TorusMesh } from './TorusMesh.ts';
|
|
842
|
+
export { TubeTrailMesh } from './TubeTrailMesh.ts';
|
|
843
|
+
export { TwoBoneIK3D } from './TwoBoneIK3D.ts';
|
|
844
|
+
export { VSeparator } from './VSeparator.ts';
|
|
845
|
+
export { ViewportTexture } from './ViewportTexture.ts';
|
|
846
|
+
export { VisibleOnScreenEnabler2D } from './VisibleOnScreenEnabler2D.ts';
|
|
847
|
+
export { VisibleOnScreenEnabler3D } from './VisibleOnScreenEnabler3D.ts';
|
|
848
|
+
export { VisualShaderNodeBooleanConstant } from './VisualShaderNodeBooleanConstant.ts';
|
|
849
|
+
export { VisualShaderNodeBooleanParameter } from './VisualShaderNodeBooleanParameter.ts';
|
|
850
|
+
export { VisualShaderNodeColorConstant } from './VisualShaderNodeColorConstant.ts';
|
|
851
|
+
export { VisualShaderNodeColorParameter } from './VisualShaderNodeColorParameter.ts';
|
|
852
|
+
export { VisualShaderNodeCurveTexture } from './VisualShaderNodeCurveTexture.ts';
|
|
853
|
+
export { VisualShaderNodeCurveXYZTexture } from './VisualShaderNodeCurveXYZTexture.ts';
|
|
854
|
+
export { VisualShaderNodeFaceForward } from './VisualShaderNodeFaceForward.ts';
|
|
855
|
+
export { VisualShaderNodeFloatConstant } from './VisualShaderNodeFloatConstant.ts';
|
|
856
|
+
export { VisualShaderNodeFloatParameter } from './VisualShaderNodeFloatParameter.ts';
|
|
857
|
+
export { VisualShaderNodeFrame } from './VisualShaderNodeFrame.ts';
|
|
858
|
+
export { VisualShaderNodeGroupBase } from './VisualShaderNodeGroupBase.ts';
|
|
859
|
+
export { VisualShaderNodeIntConstant } from './VisualShaderNodeIntConstant.ts';
|
|
860
|
+
export { VisualShaderNodeIntParameter } from './VisualShaderNodeIntParameter.ts';
|
|
861
|
+
export { VisualShaderNodeParticleBoxEmitter } from './VisualShaderNodeParticleBoxEmitter.ts';
|
|
862
|
+
export { VisualShaderNodeParticleMeshEmitter } from './VisualShaderNodeParticleMeshEmitter.ts';
|
|
863
|
+
export { VisualShaderNodeParticleOutput } from './VisualShaderNodeParticleOutput.ts';
|
|
864
|
+
export { VisualShaderNodeParticleRingEmitter } from './VisualShaderNodeParticleRingEmitter.ts';
|
|
865
|
+
export { VisualShaderNodeParticleSphereEmitter } from './VisualShaderNodeParticleSphereEmitter.ts';
|
|
866
|
+
export { VisualShaderNodeTexture2DArray } from './VisualShaderNodeTexture2DArray.ts';
|
|
867
|
+
export { VisualShaderNodeTexture3D } from './VisualShaderNodeTexture3D.ts';
|
|
868
|
+
export { VisualShaderNodeTextureParameter } from './VisualShaderNodeTextureParameter.ts';
|
|
869
|
+
export { VisualShaderNodeTransformConstant } from './VisualShaderNodeTransformConstant.ts';
|
|
870
|
+
export { VisualShaderNodeTransformParameter } from './VisualShaderNodeTransformParameter.ts';
|
|
871
|
+
export { VisualShaderNodeUIntConstant } from './VisualShaderNodeUIntConstant.ts';
|
|
872
|
+
export { VisualShaderNodeUIntParameter } from './VisualShaderNodeUIntParameter.ts';
|
|
873
|
+
export { VisualShaderNodeVaryingGetter } from './VisualShaderNodeVaryingGetter.ts';
|
|
874
|
+
export { VisualShaderNodeVaryingSetter } from './VisualShaderNodeVaryingSetter.ts';
|
|
875
|
+
export { VisualShaderNodeVec2Constant } from './VisualShaderNodeVec2Constant.ts';
|
|
876
|
+
export { VisualShaderNodeVec2Parameter } from './VisualShaderNodeVec2Parameter.ts';
|
|
877
|
+
export { VisualShaderNodeVec3Constant } from './VisualShaderNodeVec3Constant.ts';
|
|
878
|
+
export { VisualShaderNodeVec3Parameter } from './VisualShaderNodeVec3Parameter.ts';
|
|
879
|
+
export { VisualShaderNodeVec4Constant } from './VisualShaderNodeVec4Constant.ts';
|
|
880
|
+
export { VisualShaderNodeVec4Parameter } from './VisualShaderNodeVec4Parameter.ts';
|
|
881
|
+
export { VisualShaderNodeVectorCompose } from './VisualShaderNodeVectorCompose.ts';
|
|
882
|
+
export { VisualShaderNodeVectorDecompose } from './VisualShaderNodeVectorDecompose.ts';
|
|
883
|
+
export { VisualShaderNodeVectorDistance } from './VisualShaderNodeVectorDistance.ts';
|
|
884
|
+
export { VisualShaderNodeVectorFunc } from './VisualShaderNodeVectorFunc.ts';
|
|
885
|
+
export { VisualShaderNodeVectorLen } from './VisualShaderNodeVectorLen.ts';
|
|
886
|
+
export { VisualShaderNodeVectorOp } from './VisualShaderNodeVectorOp.ts';
|
|
887
|
+
export { VisualShaderNodeVectorRefract } from './VisualShaderNodeVectorRefract.ts';
|
|
888
|
+
export { AnimatableBody3D } from './AnimatableBody3D.ts';
|
|
889
|
+
export { AnimatedSprite3D } from './AnimatedSprite3D.ts';
|
|
890
|
+
export { CSGCombiner3D } from './CSGCombiner3D.ts';
|
|
891
|
+
export { CSGPrimitive3D } from './CSGPrimitive3D.ts';
|
|
892
|
+
export { CharacterBody2D } from './CharacterBody2D.ts';
|
|
893
|
+
export { CheckBox } from './CheckBox.ts';
|
|
894
|
+
export { CheckButton } from './CheckButton.ts';
|
|
895
|
+
export { ColorPickerButton } from './ColorPickerButton.ts';
|
|
896
|
+
export { CompressedCubemap } from './CompressedCubemap.ts';
|
|
897
|
+
export { CompressedCubemapArray } from './CompressedCubemapArray.ts';
|
|
898
|
+
export { CompressedTexture2DArray } from './CompressedTexture2DArray.ts';
|
|
899
|
+
export { Cubemap } from './Cubemap.ts';
|
|
900
|
+
export { CubemapArray } from './CubemapArray.ts';
|
|
901
|
+
export { FileDialog } from './FileDialog.ts';
|
|
902
|
+
export { GraphFrame } from './GraphFrame.ts';
|
|
903
|
+
export { GraphNode } from './GraphNode.ts';
|
|
904
|
+
export { HBoxContainer } from './HBoxContainer.ts';
|
|
905
|
+
export { HFlowContainer } from './HFlowContainer.ts';
|
|
906
|
+
export { HScrollBar } from './HScrollBar.ts';
|
|
907
|
+
export { HSlider } from './HSlider.ts';
|
|
908
|
+
export { HSplitContainer } from './HSplitContainer.ts';
|
|
909
|
+
export { InputEventGesture } from './InputEventGesture.ts';
|
|
910
|
+
export { InputEventKey } from './InputEventKey.ts';
|
|
911
|
+
export { InputEventMouse } from './InputEventMouse.ts';
|
|
912
|
+
export { IterateIK3D } from './IterateIK3D.ts';
|
|
913
|
+
export { MenuButton } from './MenuButton.ts';
|
|
914
|
+
export { OptionButton } from './OptionButton.ts';
|
|
915
|
+
export { PlaceholderCubemap } from './PlaceholderCubemap.ts';
|
|
916
|
+
export { PlaceholderCubemapArray } from './PlaceholderCubemapArray.ts';
|
|
917
|
+
export { PlaceholderTexture2DArray } from './PlaceholderTexture2DArray.ts';
|
|
918
|
+
export { QuadMesh } from './QuadMesh.ts';
|
|
919
|
+
export { RigidBody2D } from './RigidBody2D.ts';
|
|
920
|
+
export { SoftBody3D } from './SoftBody3D.ts';
|
|
921
|
+
export { SplineIK3D } from './SplineIK3D.ts';
|
|
922
|
+
export { Sprite3D } from './Sprite3D.ts';
|
|
923
|
+
export { StaticBody2D } from './StaticBody2D.ts';
|
|
924
|
+
export { Texture2DArray } from './Texture2DArray.ts';
|
|
925
|
+
export { Texture2DArrayRD } from './Texture2DArrayRD.ts';
|
|
926
|
+
export { TextureCubemapArrayRD } from './TextureCubemapArrayRD.ts';
|
|
927
|
+
export { TextureCubemapRD } from './TextureCubemapRD.ts';
|
|
928
|
+
export { VBoxContainer } from './VBoxContainer.ts';
|
|
929
|
+
export { VFlowContainer } from './VFlowContainer.ts';
|
|
930
|
+
export { VScrollBar } from './VScrollBar.ts';
|
|
931
|
+
export { VSlider } from './VSlider.ts';
|
|
932
|
+
export { VSplitContainer } from './VSplitContainer.ts';
|
|
933
|
+
export { VehicleBody3D } from './VehicleBody3D.ts';
|
|
934
|
+
export { VisualShaderNodeComment } from './VisualShaderNodeComment.ts';
|
|
935
|
+
export { VisualShaderNodeCubemapParameter } from './VisualShaderNodeCubemapParameter.ts';
|
|
936
|
+
export { VisualShaderNodeExpression } from './VisualShaderNodeExpression.ts';
|
|
937
|
+
export { VisualShaderNodeTexture2DArrayParameter } from './VisualShaderNodeTexture2DArrayParameter.ts';
|
|
938
|
+
export { VisualShaderNodeTexture2DParameter } from './VisualShaderNodeTexture2DParameter.ts';
|
|
939
|
+
export { VisualShaderNodeTexture3DParameter } from './VisualShaderNodeTexture3DParameter.ts';
|
|
940
|
+
export { VisualShaderNodeTextureParameterTriplanar } from './VisualShaderNodeTextureParameterTriplanar.ts';
|
|
941
|
+
export { AnimatableBody2D } from './AnimatableBody2D.ts';
|
|
942
|
+
export { CCDIK3D } from './CCDIK3D.ts';
|
|
943
|
+
export { CSGBox3D } from './CSGBox3D.ts';
|
|
944
|
+
export { CSGCylinder3D } from './CSGCylinder3D.ts';
|
|
945
|
+
export { CSGMesh3D } from './CSGMesh3D.ts';
|
|
946
|
+
export { CSGPolygon3D } from './CSGPolygon3D.ts';
|
|
947
|
+
export { CSGSphere3D } from './CSGSphere3D.ts';
|
|
948
|
+
export { CSGTorus3D } from './CSGTorus3D.ts';
|
|
949
|
+
export { ColorPicker } from './ColorPicker.ts';
|
|
950
|
+
export { FABRIK3D } from './FABRIK3D.ts';
|
|
951
|
+
export { InputEventMagnifyGesture } from './InputEventMagnifyGesture.ts';
|
|
952
|
+
export { InputEventMouseButton } from './InputEventMouseButton.ts';
|
|
953
|
+
export { InputEventMouseMotion } from './InputEventMouseMotion.ts';
|
|
954
|
+
export { InputEventPanGesture } from './InputEventPanGesture.ts';
|
|
955
|
+
export { JacobianIK3D } from './JacobianIK3D.ts';
|
|
956
|
+
export { PhysicalBone2D } from './PhysicalBone2D.ts';
|
|
957
|
+
export { VisualShaderNodeGlobalExpression } from './VisualShaderNodeGlobalExpression.ts';
|