@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,698 @@
|
|
|
1
|
+
// Auto-generated from extension_api.json - DO NOT EDIT
|
|
2
|
+
// Generated by dev/codegen.ts
|
|
3
|
+
|
|
4
|
+
import { _C, _R, _G } from '../../src/runtime.ts';
|
|
5
|
+
import { Node } from './Node.ts';
|
|
6
|
+
import type { HorizontalAlignment, Orientation } from '../global-enums.ts';
|
|
7
|
+
import type { PackedColorArray, PackedVector2Array, RID, Signal, StringName, Variant } from '../heap-types/index.ts';
|
|
8
|
+
import type { Color, Rect2, Transform2D, Vector2 } from '../value-types/index.ts';
|
|
9
|
+
import type { CanvasLayer } from './CanvasLayer.ts';
|
|
10
|
+
import type { Font } from './Font.ts';
|
|
11
|
+
import type { InputEvent } from './InputEvent.ts';
|
|
12
|
+
import type { Material } from './Material.ts';
|
|
13
|
+
import type { Mesh } from './Mesh.ts';
|
|
14
|
+
import type { MultiMesh } from './MultiMesh.ts';
|
|
15
|
+
import type { StyleBox } from './StyleBox.ts';
|
|
16
|
+
import type { Direction, JustificationFlag, LineBreakFlag } from './TextServer.ts';
|
|
17
|
+
import type { Texture2D } from './Texture2D.ts';
|
|
18
|
+
import type { World2D } from './World2D.ts';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* Abstract base class for everything in 2D space. Canvas items are laid out in a tree; children inherit and extend their parent's transform. {@link CanvasItem} is extended by {@link Control} for GUI-related nodes, and by {@link Node2D} for 2D game objects.
|
|
22
|
+
* Any {@link CanvasItem} can draw. For this, {@link queueRedraw} is called by the engine, then {@link NOTIFICATION_DRAW} will be received on idle time to request a redraw. Because of this, canvas items don't need to be redrawn on every frame, improving the performance significantly. Several functions for drawing on the {@link CanvasItem} are provided (see `draw_*` functions). However, they can only be used inside {@link _draw}, its corresponding {@link Object.Notification} or methods connected to the {@link draw} signal.
|
|
23
|
+
* Canvas items are drawn in tree order on their canvas layer. By default, children are on top of their parents, so a root {@link CanvasItem} will be drawn behind everything. This behavior can be changed on a per-item basis.
|
|
24
|
+
* A {@link CanvasItem} can be hidden, which will also hide its children. By adjusting various other properties of a {@link CanvasItem}, you can also modulate its color (via {@link modulate} or {@link selfModulate}), change its Z-index, blend mode, and more.
|
|
25
|
+
* Note that properties like transform, modulation, and visibility are only propagated to *direct* {@link CanvasItem} child nodes. If there is a non-{@link CanvasItem} node in between, like {@link Node} or {@link AnimationPlayer}, the {@link CanvasItem} nodes below will have an independent position and {@link modulate} chain. See also {@link topLevel}.
|
|
26
|
+
*/
|
|
27
|
+
export class CanvasItem extends Node {
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* Returns the internal canvas item {@link RID} used by the {@link RenderingServer} for this node.
|
|
31
|
+
*/
|
|
32
|
+
getCanvasItem(): RID { return _C(this, 4075) as RID; }
|
|
33
|
+
|
|
34
|
+
/**
|
|
35
|
+
* Returns `true` if the node is present in the {@link SceneTree}, its {@link visible} property is `true` and all its ancestors are also visible. If any ancestor is hidden, this node will not be visible in the scene tree, and is therefore not drawn (see {@link _draw}).
|
|
36
|
+
* Visibility is checked only in parent nodes that inherit from {@link CanvasItem}, {@link CanvasLayer}, and {@link Window}. If the parent is of any other type (such as {@link Node}, {@link AnimationPlayer}, or {@link Node3D}), it is assumed to be visible.
|
|
37
|
+
* **Note:** This method does not take {@link visibilityLayer} into account, so even if this method returns `true`, the node might end up not being rendered.
|
|
38
|
+
*/
|
|
39
|
+
isVisibleInTree(): boolean { return _C(this, 8451) as boolean; }
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* Show the {@link CanvasItem} if it's currently hidden. This is equivalent to setting {@link visible} to `true`.
|
|
43
|
+
* **Note:** For controls that inherit {@link Popup}, the correct way to make them visible is to call one of the multiple `popup*()` functions instead.
|
|
44
|
+
*/
|
|
45
|
+
show(): void { _C(this, 13573); }
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* Hide the {@link CanvasItem} if it's currently visible. This is equivalent to setting {@link visible} to `false`.
|
|
49
|
+
*/
|
|
50
|
+
hide(): void { _C(this, 7513); }
|
|
51
|
+
|
|
52
|
+
/**
|
|
53
|
+
* Queues the {@link CanvasItem} to redraw. During idle time, if {@link CanvasItem} is visible, {@link NOTIFICATION_DRAW} is sent and {@link _draw} is called. This only occurs **once** per frame, even if this method has been called multiple times.
|
|
54
|
+
*/
|
|
55
|
+
queueRedraw(): void { _C(this, 9696); }
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* Moves this node below its siblings, usually causing the node to draw on top of its siblings. Does nothing if this node does not have a parent. See also {@link Node.moveChild}.
|
|
59
|
+
*/
|
|
60
|
+
moveToFront(): void { _C(this, 9002); }
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* Draws a line from a 2D point to another, with a given color and width. It can be optionally antialiased. The `from` and `to` positions are defined in local space. See also {@link drawDashedLine}, {@link drawMultiline}, and {@link drawPolyline}.
|
|
64
|
+
* If `width` is negative, then a two-point primitive will be drawn instead of a four-point one. This means that when the CanvasItem is scaled, the line will remain thin. If this behavior is not desired, then pass a positive `width` like `1.0`.
|
|
65
|
+
*/
|
|
66
|
+
drawLine(from: Vector2, to: Vector2, color: Color, width?: number /* = -1.0 */, antialiased?: boolean /* = false */): void { _C(this, 2923, from, to, color, width, antialiased); }
|
|
67
|
+
|
|
68
|
+
/**
|
|
69
|
+
* Draws a dashed line from a 2D point to another, with a given color and width. The `from` and `to` positions are defined in local space. See also {@link drawLine}, {@link drawMultiline}, and {@link drawPolyline}.
|
|
70
|
+
* If `width` is negative, then a two-point primitives will be drawn instead of a four-point ones. This means that when the CanvasItem is scaled, the line parts will remain thin. If this behavior is not desired, then pass a positive `width` like `1.0`.
|
|
71
|
+
* `dash` is the length of each dash in pixels, with the gap between each dash being the same length. If `aligned` is `true`, the length of the first and last dashes may be shortened or lengthened to allow the line to begin and end at the precise points defined by `from` and `to`. Both ends are always symmetrical when `aligned` is `true`. If `aligned` is `false`, all dashes will have the same length, but the line may appear incomplete at the end due to the dash length not dividing evenly into the line length. Only full dashes are drawn when `aligned` is `false`.
|
|
72
|
+
* If `antialiased` is `true`, half transparent "feathers" will be attached to the boundary, making outlines smooth.
|
|
73
|
+
* **Note:** `antialiased` is only effective if `width` is greater than `0.0`.
|
|
74
|
+
*/
|
|
75
|
+
drawDashedLine(from: Vector2, to: Vector2, color: Color, width?: number /* = -1.0 */, dash?: number /* = 2.0 */, aligned?: boolean /* = true */, antialiased?: boolean /* = false */): void { _C(this, 2914, from, to, color, width, dash, aligned, antialiased); }
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* Draws interconnected line segments with a uniform `color` and `width` and optional antialiasing (supported only for positive `width`). The `points` array is defined in local space. When drawing large amounts of lines, this is faster than using individual {@link drawLine} calls. To draw disconnected lines, use {@link drawMultiline} instead. See also {@link drawPolygon}.
|
|
79
|
+
* If `width` is negative, it will be ignored and the polyline will be drawn using {@link RenderingServer.PRIMITIVE_LINE_STRIP}. This means that when the CanvasItem is scaled, the polyline will remain thin. If this behavior is not desired, then pass a positive `width` like `1.0`.
|
|
80
|
+
*/
|
|
81
|
+
drawPolyline(points: PackedVector2Array, color: Color, width?: number /* = -1.0 */, antialiased?: boolean /* = false */): void { _C(this, 2957, points, color, width, antialiased); }
|
|
82
|
+
|
|
83
|
+
/**
|
|
84
|
+
* Draws interconnected line segments with a uniform `width`, point-by-point coloring, and optional antialiasing (supported only for positive `width`). Colors assigned to line points match by index between `points` and `colors`, i.e. each line segment is filled with a gradient between the colors of the endpoints. The `points` array is defined in local space. When drawing large amounts of lines, this is faster than using individual {@link drawLine} calls. To draw disconnected lines, use {@link drawMultilineColors} instead. See also {@link drawPolygon}.
|
|
85
|
+
* If `width` is negative, it will be ignored and the polyline will be drawn using {@link RenderingServer.PRIMITIVE_LINE_STRIP}. This means that when the CanvasItem is scaled, the polyline will remain thin. If this behavior is not desired, then pass a positive `width` like `1.0`.
|
|
86
|
+
*/
|
|
87
|
+
drawPolylineColors(points: PackedVector2Array, colors: PackedColorArray, width?: number /* = -1.0 */, antialiased?: boolean /* = false */): void { _C(this, 2958, points, colors, width, antialiased); }
|
|
88
|
+
|
|
89
|
+
/**
|
|
90
|
+
* Draws an unfilled elliptical arc between the given angles with a uniform `color` and `width` and optional antialiasing (supported only for positive `width`). The larger the value of `pointCount`, the smoother the curve. For circular arcs, see {@link drawArc}. See also {@link drawEllipse}.
|
|
91
|
+
* If `width` is negative, it will be ignored and the arc will be drawn using {@link RenderingServer.PRIMITIVE_LINE_STRIP}. This means that when the CanvasItem is scaled, the arc will remain thin. If this behavior is not desired, then pass a positive `width` like `1.0`.
|
|
92
|
+
* The arc is drawn from `startAngle` towards the value of `endAngle` so in clockwise direction if `start_angle < end_angle` and counter-clockwise otherwise. Passing the same angles but in reversed order will produce the same arc. If absolute difference of `startAngle` and `endAngle` is greater than `TAU` radians, then a full ellipse is drawn (i.e. arc will not overlap itself).
|
|
93
|
+
*/
|
|
94
|
+
drawEllipseArc(center: Vector2, major: number, minor: number, startAngle: number, endAngle: number, pointCount: number, color: Color, width?: number /* = -1.0 */, antialiased?: boolean /* = false */): void { _C(this, 2918, center, major, minor, startAngle, endAngle, pointCount, color, width, antialiased); }
|
|
95
|
+
|
|
96
|
+
/**
|
|
97
|
+
* Draws an unfilled arc between the given angles with a uniform `color` and `width` and optional antialiasing (supported only for positive `width`). The larger the value of `pointCount`, the smoother the curve. `center` is defined in local space. For elliptical arcs, see {@link drawEllipseArc}. See also {@link drawCircle}.
|
|
98
|
+
* If `width` is negative, it will be ignored and the arc will be drawn using {@link RenderingServer.PRIMITIVE_LINE_STRIP}. This means that when the CanvasItem is scaled, the arc will remain thin. If this behavior is not desired, then pass a positive `width` like `1.0`.
|
|
99
|
+
* The arc is drawn from `startAngle` towards the value of `endAngle` so in clockwise direction if `start_angle < end_angle` and counter-clockwise otherwise. Passing the same angles but in reversed order will produce the same arc. If absolute difference of `startAngle` and `endAngle` is greater than `TAU` radians, then a full circle arc is drawn (i.e. arc will not overlap itself).
|
|
100
|
+
*/
|
|
101
|
+
drawArc(center: Vector2, radius: number, startAngle: number, endAngle: number, pointCount: number, color: Color, width?: number /* = -1.0 */, antialiased?: boolean /* = false */): void { _C(this, 2904, center, radius, startAngle, endAngle, pointCount, color, width, antialiased); }
|
|
102
|
+
|
|
103
|
+
/**
|
|
104
|
+
* Draws multiple disconnected lines with a uniform `width` and `color`. Each line is defined by two consecutive points from `points` array in local space, i.e. i-th segment consists of `points[2 * i]`, `points[2 * i + 1]` endpoints. When drawing large amounts of lines, this is faster than using individual {@link drawLine} calls. To draw interconnected lines, use {@link drawPolyline} instead.
|
|
105
|
+
* If `width` is negative, then two-point primitives will be drawn instead of a four-point ones. This means that when the CanvasItem is scaled, the lines will remain thin. If this behavior is not desired, then pass a positive `width` like `1.0`.
|
|
106
|
+
* **Note:** `antialiased` is only effective if `width` is greater than `0.0`.
|
|
107
|
+
*/
|
|
108
|
+
drawMultiline(points: PackedVector2Array, color: Color, width?: number /* = -1.0 */, antialiased?: boolean /* = false */): void { _C(this, 2944, points, color, width, antialiased); }
|
|
109
|
+
|
|
110
|
+
/**
|
|
111
|
+
* Draws multiple disconnected lines with a uniform `width` and segment-by-segment coloring. Each segment is defined by two consecutive points from `points` array in local space and a corresponding color from `colors` array, i.e. i-th segment consists of `points[2 * i]`, `points[2 * i + 1]` endpoints and has `colors[i]` color. When drawing large amounts of lines, this is faster than using individual {@link drawLine} calls. To draw interconnected lines, use {@link drawPolylineColors} instead.
|
|
112
|
+
* If `width` is negative, then two-point primitives will be drawn instead of a four-point ones. This means that when the CanvasItem is scaled, the lines will remain thin. If this behavior is not desired, then pass a positive `width` like `1.0`.
|
|
113
|
+
* **Note:** `antialiased` is only effective if `width` is greater than `0.0`.
|
|
114
|
+
*/
|
|
115
|
+
drawMultilineColors(points: PackedVector2Array, colors: PackedColorArray, width?: number /* = -1.0 */, antialiased?: boolean /* = false */): void { _C(this, 2945, points, colors, width, antialiased); }
|
|
116
|
+
|
|
117
|
+
/**
|
|
118
|
+
* Draws a rectangle. If `filled` is `true`, the rectangle will be filled with the `color` specified. If `filled` is `false`, the rectangle will be drawn as a stroke with the `color` and `width` specified. The `rect` is specified in local space. See also {@link drawTextureRect}.
|
|
119
|
+
* If `width` is negative, then two-point primitives will be drawn instead of a four-point ones. This means that when the CanvasItem is scaled, the lines will remain thin. If this behavior is not desired, then pass a positive `width` like `1.0`.
|
|
120
|
+
* If `antialiased` is `true`, half transparent "feathers" will be attached to the boundary, making outlines smooth.
|
|
121
|
+
* **Note:** `width` is only effective if `filled` is `false`.
|
|
122
|
+
* **Note:** Unfilled rectangles drawn with a negative `width` may not display perfectly. For example, corners may be missing or brighter due to overlapping lines (for a translucent `color`).
|
|
123
|
+
*/
|
|
124
|
+
drawRect(rect: Rect2, color: Color, filled?: boolean /* = true */, width?: number /* = -1.0 */, antialiased?: boolean /* = false */): void { _C(this, 2960, rect, color, filled, width, antialiased); }
|
|
125
|
+
|
|
126
|
+
/**
|
|
127
|
+
* Draws a circle, with `position` defined in local space. See also {@link drawEllipse}, {@link drawArc}, {@link drawPolyline}, and {@link drawPolygon}.
|
|
128
|
+
* If `filled` is `true`, the circle will be filled with the `color` specified. If `filled` is `false`, the circle will be drawn as a stroke with the `color` and `width` specified.
|
|
129
|
+
* If `width` is negative, then two-point primitives will be drawn instead of a four-point ones. This means that when the CanvasItem is scaled, the lines will remain thin. If this behavior is not desired, then pass a positive `width` like `1.0`.
|
|
130
|
+
* If `antialiased` is `true`, half transparent "feathers" will be attached to the boundary, making outlines smooth.
|
|
131
|
+
* **Note:** `width` is only effective if `filled` is `false`.
|
|
132
|
+
*/
|
|
133
|
+
drawCircle(position: Vector2, radius: number, color: Color, filled?: boolean /* = true */, width?: number /* = -1.0 */, antialiased?: boolean /* = false */): void { _C(this, 2908, position, radius, color, filled, width, antialiased); }
|
|
134
|
+
|
|
135
|
+
/**
|
|
136
|
+
* Draws an ellipse with semi-major axis `major` and semi-minor axis `minor`. See also {@link drawCircle}, {@link drawEllipseArc}, {@link drawPolyline}, and {@link drawPolygon}.
|
|
137
|
+
* If `filled` is `true`, the ellipse will be filled with the `color` specified. If `filled` is `false`, the ellipse will be drawn as a stroke with the `color` and `width` specified.
|
|
138
|
+
* If `width` is negative, then two-point primitives will be drawn instead of four-point ones. This means that when the CanvasItem is scaled, the lines will remain thin. If this behavior is not desired, then pass a positive `width` like `1.0`.
|
|
139
|
+
* If `antialiased` is `true`, half transparent "feathers" will be attached to the boundary, making outlines smooth.
|
|
140
|
+
* **Note:** `width` is only effective if `filled` is `false`.
|
|
141
|
+
*/
|
|
142
|
+
drawEllipse(position: Vector2, major: number, minor: number, color: Color, filled?: boolean /* = true */, width?: number /* = -1.0 */, antialiased?: boolean /* = false */): void { _C(this, 2917, position, major, minor, color, filled, width, antialiased); }
|
|
143
|
+
|
|
144
|
+
/**
|
|
145
|
+
* Draws a texture at a given position. The `position` is defined in local space.
|
|
146
|
+
* **Note:** Styleboxes, textures, and meshes stored only inside local variables should **not** be used with this method in GDScript, because the drawing operation doesn't begin immediately once this method is called. In GDScript, when the function with the local variables ends, the local variables get destroyed before the rendering takes place.
|
|
147
|
+
*/
|
|
148
|
+
drawTexture(texture: Texture2D, position: Vector2, modulate?: Color /* = Color(1, 1, 1, 1) */): void { _C(this, 2970, texture, position, modulate); }
|
|
149
|
+
|
|
150
|
+
/**
|
|
151
|
+
* Draws a textured rectangle at a given position, optionally modulated by a color. The `rect` is defined in local space. If `transpose` is `true`, the texture will have its X and Y coordinates swapped. See also {@link drawRect} and {@link drawTextureRectRegion}.
|
|
152
|
+
* **Note:** Styleboxes, textures, and meshes stored only inside local variables should **not** be used with this method in GDScript, because the drawing operation doesn't begin immediately once this method is called. In GDScript, when the function with the local variables ends, the local variables get destroyed before the rendering takes place.
|
|
153
|
+
*/
|
|
154
|
+
drawTextureRect(texture: Texture2D, rect: Rect2, tile: boolean, modulate?: Color /* = Color(1, 1, 1, 1) */, transpose?: boolean /* = false */): void { _C(this, 2971, texture, rect, tile, modulate, transpose); }
|
|
155
|
+
|
|
156
|
+
/**
|
|
157
|
+
* Draws a textured rectangle from a texture's region (specified by `srcRect`) at a given position in local space, optionally modulated by a color. If `transpose` is `true`, the texture will have its X and Y coordinates swapped. See also {@link drawTextureRect}.
|
|
158
|
+
* **Note:** Styleboxes, textures, and meshes stored only inside local variables should **not** be used with this method in GDScript, because the drawing operation doesn't begin immediately once this method is called. In GDScript, when the function with the local variables ends, the local variables get destroyed before the rendering takes place.
|
|
159
|
+
*/
|
|
160
|
+
drawTextureRectRegion(texture: Texture2D, rect: Rect2, srcRect: Rect2, modulate?: Color /* = Color(1, 1, 1, 1) */, transpose?: boolean /* = false */, clipUv?: boolean /* = true */): void { _C(this, 2972, texture, rect, srcRect, modulate, transpose, clipUv); }
|
|
161
|
+
|
|
162
|
+
/**
|
|
163
|
+
* Draws a textured rectangle region of the multichannel signed distance field texture at a given position, optionally modulated by a color. The `rect` is defined in local space. See {@link FontFile.multichannelSignedDistanceField} for more information and caveats about MSDF font rendering.
|
|
164
|
+
* If `outline` is positive, each alpha channel value of pixel in region is set to maximum value of true distance in the `outline` radius.
|
|
165
|
+
* Value of the `pixelRange` should the same that was used during distance field texture generation.
|
|
166
|
+
* **Note:** Styleboxes, textures, and meshes stored only inside local variables should **not** be used with this method in GDScript, because the drawing operation doesn't begin immediately once this method is called. In GDScript, when the function with the local variables ends, the local variables get destroyed before the rendering takes place.
|
|
167
|
+
*/
|
|
168
|
+
drawMsdfTextureRectRegion(texture: Texture2D, rect: Rect2, srcRect: Rect2, modulate?: Color /* = Color(1, 1, 1, 1) */, outline?: number /* = 0.0, double */, pixelRange?: number /* = 4.0, double */, scale?: number /* = 1.0, double */): void { _C(this, 2943, texture, rect, srcRect, modulate, outline, pixelRange, scale); }
|
|
169
|
+
|
|
170
|
+
/**
|
|
171
|
+
* Draws a textured rectangle region of the font texture with LCD subpixel anti-aliasing at a given position, optionally modulated by a color. The `rect` is defined in local space.
|
|
172
|
+
* Texture is drawn using the following blend operation, blend mode of the {@link CanvasItemMaterial} is ignored:
|
|
173
|
+
*
|
|
174
|
+
* ```text
|
|
175
|
+
*
|
|
176
|
+
* dst.r = texture.r * modulate.r * modulate.a + dst.r * (1.0 - texture.r * modulate.a);
|
|
177
|
+
* dst.g = texture.g * modulate.g * modulate.a + dst.g * (1.0 - texture.g * modulate.a);
|
|
178
|
+
* dst.b = texture.b * modulate.b * modulate.a + dst.b * (1.0 - texture.b * modulate.a);
|
|
179
|
+
* dst.a = modulate.a + dst.a * (1.0 - modulate.a);
|
|
180
|
+
*
|
|
181
|
+
* ```
|
|
182
|
+
*
|
|
183
|
+
* **Note:** Styleboxes, textures, and meshes stored only inside local variables should **not** be used with this method in GDScript, because the drawing operation doesn't begin immediately once this method is called. In GDScript, when the function with the local variables ends, the local variables get destroyed before the rendering takes place.
|
|
184
|
+
*/
|
|
185
|
+
drawLcdTextureRectRegion(texture: Texture2D, rect: Rect2, srcRect: Rect2, modulate?: Color /* = Color(1, 1, 1, 1) */): void { _C(this, 2922, texture, rect, srcRect, modulate); }
|
|
186
|
+
|
|
187
|
+
/**
|
|
188
|
+
* Draws a styled rectangle. The `rect` is defined in local space.
|
|
189
|
+
* **Note:** Styleboxes, textures, and meshes stored only inside local variables should **not** be used with this method in GDScript, because the drawing operation doesn't begin immediately once this method is called. In GDScript, when the function with the local variables ends, the local variables get destroyed before the rendering takes place.
|
|
190
|
+
*/
|
|
191
|
+
drawStyleBox(styleBox: StyleBox, rect: Rect2): void { _C(this, 2968, styleBox, rect); }
|
|
192
|
+
|
|
193
|
+
/**
|
|
194
|
+
* Draws a custom primitive. 1 point for a point, 2 points for a line, 3 points for a triangle, and 4 points for a quad. If 0 points or more than 4 points are specified, nothing will be drawn and an error message will be printed. The `points` array is defined in local space. See also {@link drawLine}, {@link drawPolyline}, {@link drawPolygon}, and {@link drawRect}.
|
|
195
|
+
* **Note:** Styleboxes, textures, and meshes stored only inside local variables should **not** be used with this method in GDScript, because the drawing operation doesn't begin immediately once this method is called. In GDScript, when the function with the local variables ends, the local variables get destroyed before the rendering takes place.
|
|
196
|
+
*/
|
|
197
|
+
drawPrimitive(points: PackedVector2Array, colors: PackedColorArray, uvs: PackedVector2Array, texture?: Texture2D /* = null */): void { _C(this, 2959, points, colors, uvs, texture); }
|
|
198
|
+
|
|
199
|
+
/**
|
|
200
|
+
* Draws a solid polygon of any number of points, convex or concave. Unlike {@link drawColoredPolygon}, each point's color can be changed individually. The `points` array is defined in local space. See also {@link drawPolyline} and {@link drawPolylineColors}. If you need more flexibility (such as being able to use bones), use {@link RenderingServer.canvasItemAddTriangleArray} instead.
|
|
201
|
+
* **Note:** If you frequently redraw the same polygon with a large number of vertices, consider pre-calculating the triangulation with {@link Geometry2D.triangulatePolygon} and using {@link drawMesh}, {@link drawMultimesh}, or {@link RenderingServer.canvasItemAddTriangleArray}.
|
|
202
|
+
* **Note:** Styleboxes, textures, and meshes stored only inside local variables should **not** be used with this method in GDScript, because the drawing operation doesn't begin immediately once this method is called. In GDScript, when the function with the local variables ends, the local variables get destroyed before the rendering takes place.
|
|
203
|
+
*/
|
|
204
|
+
drawPolygon(points: PackedVector2Array, colors: PackedColorArray, uvs?: PackedVector2Array /* = PackedVector2Array() */, texture?: Texture2D /* = null */): void { _C(this, 2956, points, colors, uvs, texture); }
|
|
205
|
+
|
|
206
|
+
/**
|
|
207
|
+
* Draws a colored polygon of any number of points, convex or concave. The points in the `points` array are defined in local space. Unlike {@link drawPolygon}, a single color must be specified for the whole polygon.
|
|
208
|
+
* **Note:** If you frequently redraw the same polygon with a large number of vertices, consider pre-calculating the triangulation with {@link Geometry2D.triangulatePolygon} and using {@link drawMesh}, {@link drawMultimesh}, or {@link RenderingServer.canvasItemAddTriangleArray}.
|
|
209
|
+
* **Note:** Styleboxes, textures, and meshes stored only inside local variables should **not** be used with this method in GDScript, because the drawing operation doesn't begin immediately once this method is called. In GDScript, when the function with the local variables ends, the local variables get destroyed before the rendering takes place.
|
|
210
|
+
*/
|
|
211
|
+
drawColoredPolygon(points: PackedVector2Array, color: Color, uvs?: PackedVector2Array /* = PackedVector2Array() */, texture?: Texture2D /* = null */): void { _C(this, 2909, points, color, uvs, texture); }
|
|
212
|
+
|
|
213
|
+
/**
|
|
214
|
+
* Draws `text` using the specified `font` at the `pos` in local space (bottom-left corner using the baseline of the font). The text will have its color multiplied by `modulate`. If `width` is greater than or equal to 0, the text will be clipped if it exceeds the specified width. If `oversampling` is greater than zero, it is used as font oversampling factor, otherwise viewport oversampling settings are used.
|
|
215
|
+
* **Example:** Draw "Hello world", using the project's default font:
|
|
216
|
+
*
|
|
217
|
+
*
|
|
218
|
+
* ```gdscript
|
|
219
|
+
*
|
|
220
|
+
* draw_string(ThemeDB.fallback_font, Vector2(64, 64), "Hello world", HORIZONTAL_ALIGNMENT_LEFT, -1, ThemeDB.fallback_font_size)
|
|
221
|
+
*
|
|
222
|
+
* ```
|
|
223
|
+
*
|
|
224
|
+
*
|
|
225
|
+
*
|
|
226
|
+
* See also {@link Font.drawString}.
|
|
227
|
+
*/
|
|
228
|
+
drawString(font: Font, pos: Vector2, text: string, alignment?: HorizontalAlignment /* = 0 */, width?: number /* = -1 */, fontSize?: number /* = 16 */, modulate?: Color /* = Color(1, 1, 1, 1) */, justificationFlags?: JustificationFlag /* = 3 */, direction?: Direction /* = 0 */, orientation?: Orientation /* = 0 */, oversampling?: number /* = 0.0 */): void { _C(this, 2966, font, pos, text, alignment, width, fontSize, modulate, justificationFlags, direction, orientation, oversampling); }
|
|
229
|
+
|
|
230
|
+
/**
|
|
231
|
+
* Breaks `text` into lines and draws it using the specified `font` at the `pos` in local space (top-left corner). The text will have its color multiplied by `modulate`. If `width` is greater than or equal to 0, the text will be clipped if it exceeds the specified width. If `oversampling` is greater than zero, it is used as font oversampling factor, otherwise viewport oversampling settings are used.
|
|
232
|
+
*/
|
|
233
|
+
drawMultilineString(font: Font, pos: Vector2, text: string, alignment?: HorizontalAlignment /* = 0 */, width?: number /* = -1 */, fontSize?: number /* = 16 */, maxLines?: number /* = -1 */, modulate?: Color /* = Color(1, 1, 1, 1) */, brkFlags?: LineBreakFlag /* = 3 */, justificationFlags?: JustificationFlag /* = 3 */, direction?: Direction /* = 0 */, orientation?: Orientation /* = 0 */, oversampling?: number /* = 0.0 */): void { _C(this, 2946, font, pos, text, alignment, width, fontSize, maxLines, modulate, brkFlags, justificationFlags, direction, orientation, oversampling); }
|
|
234
|
+
|
|
235
|
+
/**
|
|
236
|
+
* Draws `text` outline using the specified `font` at the `pos` in local space (bottom-left corner using the baseline of the font). The text will have its color multiplied by `modulate`. If `width` is greater than or equal to 0, the text will be clipped if it exceeds the specified width. If `oversampling` is greater than zero, it is used as font oversampling factor, otherwise viewport oversampling settings are used.
|
|
237
|
+
*/
|
|
238
|
+
drawStringOutline(font: Font, pos: Vector2, text: string, alignment?: HorizontalAlignment /* = 0 */, width?: number /* = -1 */, fontSize?: number /* = 16 */, size?: number /* = 1 */, modulate?: Color /* = Color(1, 1, 1, 1) */, justificationFlags?: JustificationFlag /* = 3 */, direction?: Direction /* = 0 */, orientation?: Orientation /* = 0 */, oversampling?: number /* = 0.0 */): void { _C(this, 2967, font, pos, text, alignment, width, fontSize, size, modulate, justificationFlags, direction, orientation, oversampling); }
|
|
239
|
+
|
|
240
|
+
/**
|
|
241
|
+
* Breaks `text` to the lines and draws text outline using the specified `font` at the `pos` in local space (top-left corner). The text will have its color multiplied by `modulate`. If `width` is greater than or equal to 0, the text will be clipped if it exceeds the specified width. If `oversampling` is greater than zero, it is used as font oversampling factor, otherwise viewport oversampling settings are used.
|
|
242
|
+
*/
|
|
243
|
+
drawMultilineStringOutline(font: Font, pos: Vector2, text: string, alignment?: HorizontalAlignment /* = 0 */, width?: number /* = -1 */, fontSize?: number /* = 16 */, maxLines?: number /* = -1 */, size?: number /* = 1 */, modulate?: Color /* = Color(1, 1, 1, 1) */, brkFlags?: LineBreakFlag /* = 3 */, justificationFlags?: JustificationFlag /* = 3 */, direction?: Direction /* = 0 */, orientation?: Orientation /* = 0 */, oversampling?: number /* = 0.0 */): void { _C(this, 2947, font, pos, text, alignment, width, fontSize, maxLines, size, modulate, brkFlags, justificationFlags, direction, orientation, oversampling); }
|
|
244
|
+
|
|
245
|
+
/**
|
|
246
|
+
* Draws a string first character using a custom font. If `oversampling` is greater than zero, it is used as font oversampling factor, otherwise viewport oversampling settings are used. `pos` is defined in local space.
|
|
247
|
+
*/
|
|
248
|
+
drawChar(font: Font, pos: Vector2, _char: string, fontSize?: number /* = 16 */, modulate?: Color /* = Color(1, 1, 1, 1) */, oversampling?: number /* = 0.0 */): void { _C(this, 2906, font, pos, _char, fontSize, modulate, oversampling); }
|
|
249
|
+
|
|
250
|
+
/**
|
|
251
|
+
* Draws a string first character outline using a custom font. If `oversampling` is greater than zero, it is used as font oversampling factor, otherwise viewport oversampling settings are used. `pos` is defined in local space.
|
|
252
|
+
*/
|
|
253
|
+
drawCharOutline(font: Font, pos: Vector2, _char: string, fontSize?: number /* = 16 */, size?: number /* = -1 */, modulate?: Color /* = Color(1, 1, 1, 1) */, oversampling?: number /* = 0.0 */): void { _C(this, 2907, font, pos, _char, fontSize, size, modulate, oversampling); }
|
|
254
|
+
|
|
255
|
+
/**
|
|
256
|
+
* Draws a {@link Mesh} in 2D, using the provided texture. See {@link MeshInstance2D} for related documentation. The `transform` is defined in local space.
|
|
257
|
+
* **Note:** Styleboxes, textures, and meshes stored only inside local variables should **not** be used with this method in GDScript, because the drawing operation doesn't begin immediately once this method is called. In GDScript, when the function with the local variables ends, the local variables get destroyed before the rendering takes place.
|
|
258
|
+
*/
|
|
259
|
+
drawMesh(mesh: Mesh, texture: Texture2D, transform?: Transform2D /* = Transform2D(1, 0, 0, 1, 0, 0) */, modulate?: Color /* = Color(1, 1, 1, 1) */): void { _C(this, 2942, mesh, texture, transform, modulate); }
|
|
260
|
+
|
|
261
|
+
/**
|
|
262
|
+
* Draws a {@link MultiMesh} in 2D with the provided texture. See {@link MultiMeshInstance2D} for related documentation.
|
|
263
|
+
* **Note:** Styleboxes, textures, and meshes stored only inside local variables should **not** be used with this method in GDScript, because the drawing operation doesn't begin immediately once this method is called. In GDScript, when the function with the local variables ends, the local variables get destroyed before the rendering takes place.
|
|
264
|
+
*/
|
|
265
|
+
drawMultimesh(multimesh: MultiMesh, texture: Texture2D): void { _C(this, 2948, multimesh, texture); }
|
|
266
|
+
|
|
267
|
+
/**
|
|
268
|
+
* Sets a custom local transform for drawing via components. Anything drawn afterwards will be transformed by this.
|
|
269
|
+
* **Note:** {@link FontFile.oversampling} does *not* take `scale` into account. This means that scaling up/down will cause bitmap fonts and rasterized (non-MSDF) dynamic fonts to appear blurry or pixelated. To ensure text remains crisp regardless of scale, you can enable MSDF font rendering by enabling {@link ProjectSettings.gui/theme/defaultFontMultichannelSignedDistanceField} (applies to the default project font only), or enabling **Multichannel Signed Distance Field** in the import options of a DynamicFont for custom fonts. On system fonts, {@link SystemFont.multichannelSignedDistanceField} can be enabled in the inspector.
|
|
270
|
+
*/
|
|
271
|
+
drawSetTransform(position: Vector2, rotation?: number /* = 0.0 */, scale?: Vector2 /* = Vector2(1, 1) */): void { _C(this, 2962, position, rotation, scale); }
|
|
272
|
+
|
|
273
|
+
/**
|
|
274
|
+
* Sets a custom local transform for drawing via matrix. Anything drawn afterwards will be transformed by this.
|
|
275
|
+
*/
|
|
276
|
+
drawSetTransformMatrix(xform: Transform2D): void { _C(this, 2963, xform); }
|
|
277
|
+
|
|
278
|
+
/**
|
|
279
|
+
* Subsequent drawing commands will be ignored unless they fall within the specified animation slice. This is a faster way to implement animations that loop on background rather than redrawing constantly.
|
|
280
|
+
*/
|
|
281
|
+
drawAnimationSlice(animationLength: number /* double */, sliceBegin: number /* double */, sliceEnd: number /* double */, offset?: number /* = 0.0, double */): void { _C(this, 2903, animationLength, sliceBegin, sliceEnd, offset); }
|
|
282
|
+
|
|
283
|
+
/**
|
|
284
|
+
* After submitting all animations slices via {@link drawAnimationSlice}, this function can be used to revert drawing to its default state (all subsequent drawing commands will be visible). If you don't care about this particular use case, usage of this function after submitting the slices is not required.
|
|
285
|
+
*/
|
|
286
|
+
drawEndAnimation(): void { _C(this, 2919); }
|
|
287
|
+
|
|
288
|
+
/**
|
|
289
|
+
* Returns the transform matrix of this {@link CanvasItem}.
|
|
290
|
+
*/
|
|
291
|
+
getTransform(): Transform2D { return _C(this, 6874) as Transform2D; }
|
|
292
|
+
|
|
293
|
+
/**
|
|
294
|
+
* Returns the global transform matrix of this item, i.e. the combined transform up to the topmost {@link CanvasItem} node. The topmost item is a {@link CanvasItem} that either has no parent, has non-{@link CanvasItem} parent or it has {@link topLevel} enabled.
|
|
295
|
+
*/
|
|
296
|
+
getGlobalTransform(): Transform2D { return _C(this, 4936) as Transform2D; }
|
|
297
|
+
|
|
298
|
+
/**
|
|
299
|
+
* Returns the transform from the local coordinate system of this {@link CanvasItem} to the {@link Viewport}s coordinate system.
|
|
300
|
+
*/
|
|
301
|
+
getGlobalTransformWithCanvas(): Transform2D { return _C(this, 4938) as Transform2D; }
|
|
302
|
+
|
|
303
|
+
/**
|
|
304
|
+
* Returns the transform of this node, converted from its registered canvas's coordinate system to its viewport embedder's coordinate system. See also {@link Viewport.getFinalTransform} and {@link Node.getViewport}.
|
|
305
|
+
*/
|
|
306
|
+
getViewportTransform(): Transform2D { return _C(this, 7086) as Transform2D; }
|
|
307
|
+
|
|
308
|
+
/**
|
|
309
|
+
* Returns this node's viewport boundaries as a {@link Rect2}. See also {@link Node.getViewport}.
|
|
310
|
+
*/
|
|
311
|
+
getViewportRect(): Rect2 { return _C(this, 7084) as Rect2; }
|
|
312
|
+
|
|
313
|
+
/**
|
|
314
|
+
* Returns the transform of this node, converted from its registered canvas's coordinate system to its viewport's coordinate system. See also {@link Node.getViewport}.
|
|
315
|
+
*/
|
|
316
|
+
getCanvasTransform(): Transform2D { return _C(this, 4078) as Transform2D; }
|
|
317
|
+
|
|
318
|
+
/**
|
|
319
|
+
* Returns the transform of this {@link CanvasItem} in global screen coordinates (i.e. taking window position into account). Mostly useful for editor plugins.
|
|
320
|
+
* Equivalent to {@link getGlobalTransformWithCanvas} if the window is embedded (see {@link Viewport.guiEmbedSubwindows}).
|
|
321
|
+
*/
|
|
322
|
+
getScreenTransform(): Transform2D { return _C(this, 6265) as Transform2D; }
|
|
323
|
+
|
|
324
|
+
/**
|
|
325
|
+
* Returns the mouse's position in this {@link CanvasItem} using the local coordinate system of this {@link CanvasItem}.
|
|
326
|
+
*/
|
|
327
|
+
getLocalMousePosition(): Vector2 { return _C(this, 5397) as Vector2; }
|
|
328
|
+
|
|
329
|
+
/**
|
|
330
|
+
* Returns mouse cursor's global position relative to the {@link CanvasLayer} that contains this node.
|
|
331
|
+
* **Note:** For screen-space coordinates (e.g. when using a non-embedded {@link Popup}), you can use {@link DisplayServer.mouseGetPosition}.
|
|
332
|
+
*/
|
|
333
|
+
getGlobalMousePosition(): Vector2 { return _C(this, 4927) as Vector2; }
|
|
334
|
+
|
|
335
|
+
/**
|
|
336
|
+
* Returns the {@link RID} of the {@link World2D} canvas where this node is registered to, used by the {@link RenderingServer}.
|
|
337
|
+
*/
|
|
338
|
+
getCanvas(): RID { return _C(this, 4071) as RID; }
|
|
339
|
+
|
|
340
|
+
/**
|
|
341
|
+
* Returns the {@link CanvasLayer} that contains this node, or `null` if the node is not in any {@link CanvasLayer}.
|
|
342
|
+
*/
|
|
343
|
+
getCanvasLayerNode(): CanvasLayer | null { return _C(this, 4076) as CanvasLayer | null; }
|
|
344
|
+
|
|
345
|
+
/**
|
|
346
|
+
* Returns the {@link World2D} this node is registered to.
|
|
347
|
+
* Usually, this is the same as this node's viewport (see {@link Node.getViewport} and {@link Viewport.findWorld2d}).
|
|
348
|
+
*/
|
|
349
|
+
getWorld2d(): World2D { return _C(this, 7160) as World2D; }
|
|
350
|
+
|
|
351
|
+
/**
|
|
352
|
+
* Set the value of a shader uniform for this instance only ([per-instance uniform]($DOCS_URL/tutorials/shaders/shader_reference/shading_language.html#per-instance-uniforms)). See also {@link ShaderMaterial.setShaderParameter} to assign a uniform on all instances using the same {@link ShaderMaterial}.
|
|
353
|
+
* **Note:** For a shader uniform to be assignable on a per-instance basis, it *must* be defined with `instance uniform ...` rather than `uniform ...` in the shader code.
|
|
354
|
+
* **Note:** `name` is case-sensitive and must match the name of the uniform in the code exactly (not the capitalized name in the inspector).
|
|
355
|
+
*/
|
|
356
|
+
setInstanceShaderParameter(name: StringName, value: Variant): void { _C(this, 11729, name, value); }
|
|
357
|
+
|
|
358
|
+
/**
|
|
359
|
+
* Get the value of a shader parameter as set on this instance.
|
|
360
|
+
*/
|
|
361
|
+
getInstanceShaderParameter(name: StringName): Variant { return _C(this, 5138, name) as Variant; }
|
|
362
|
+
|
|
363
|
+
/**
|
|
364
|
+
* If `true`, the node will receive {@link NOTIFICATION_LOCAL_TRANSFORM_CHANGED} whenever its local transform changes.
|
|
365
|
+
* **Note:** Many canvas items such as {@link Bone2D} or {@link CollisionShape2D} automatically enable this in order to function correctly.
|
|
366
|
+
*/
|
|
367
|
+
setNotifyLocalTransform(enable: boolean): void { _C(this, 12153, enable); }
|
|
368
|
+
|
|
369
|
+
/**
|
|
370
|
+
* Returns `true` if the node receives {@link NOTIFICATION_LOCAL_TRANSFORM_CHANGED} whenever its local transform changes. This is enabled with {@link setNotifyLocalTransform}.
|
|
371
|
+
*/
|
|
372
|
+
isLocalTransformNotificationEnabled(): boolean { return _C(this, 8088) as boolean; }
|
|
373
|
+
|
|
374
|
+
/**
|
|
375
|
+
* If `true`, the node will receive {@link NOTIFICATION_TRANSFORM_CHANGED} whenever its global transform changes.
|
|
376
|
+
* **Note:** Many canvas items such as {@link Camera2D} or {@link Light2D} automatically enable this in order to function correctly.
|
|
377
|
+
*/
|
|
378
|
+
setNotifyTransform(enable: boolean): void { _C(this, 12154, enable); }
|
|
379
|
+
|
|
380
|
+
/**
|
|
381
|
+
* Returns `true` if the node receives {@link NOTIFICATION_TRANSFORM_CHANGED} whenever its global transform changes. This is enabled with {@link setNotifyTransform}.
|
|
382
|
+
*/
|
|
383
|
+
isTransformNotificationEnabled(): boolean { return _C(this, 8371) as boolean; }
|
|
384
|
+
|
|
385
|
+
/**
|
|
386
|
+
* Forces the node's transform to update. Fails if the node is not inside the tree. See also {@link getTransform}.
|
|
387
|
+
* **Note:** For performance reasons, transform changes are usually accumulated and applied *once* at the end of the frame. The update propagates through {@link CanvasItem} children, as well. Therefore, use this method only when you need an up-to-date transform (such as during physics operations).
|
|
388
|
+
*/
|
|
389
|
+
forceUpdateTransform(): void { _C(this, 3543); }
|
|
390
|
+
|
|
391
|
+
/**
|
|
392
|
+
* Transforms `viewportPoint` from the viewport's coordinates to this node's local coordinates.
|
|
393
|
+
* For the opposite operation, use {@link getGlobalTransformWithCanvas}.
|
|
394
|
+
*
|
|
395
|
+
* ```text
|
|
396
|
+
*
|
|
397
|
+
* var viewport_point = get_global_transform_with_canvas() * local_point
|
|
398
|
+
*
|
|
399
|
+
* ```
|
|
400
|
+
*/
|
|
401
|
+
makeCanvasPositionLocal(viewportPoint: Vector2): Vector2 { return _C(this, 8727, viewportPoint) as Vector2; }
|
|
402
|
+
|
|
403
|
+
/**
|
|
404
|
+
* Returns a copy of the given `event` with its coordinates converted from global space to this {@link CanvasItem}'s local space. If not possible, returns the same {@link InputEvent} unchanged.
|
|
405
|
+
*/
|
|
406
|
+
makeInputLocal(event: InputEvent): InputEvent { return _C(this, 8734, event) as InputEvent; }
|
|
407
|
+
|
|
408
|
+
/**
|
|
409
|
+
* Set/clear individual bits on the rendering visibility layer. This simplifies editing this {@link CanvasItem}'s visibility layer.
|
|
410
|
+
*/
|
|
411
|
+
setVisibilityLayerBit(layer: number /* uint32 */, enabled: boolean): void { _C(this, 13320, layer, enabled); }
|
|
412
|
+
|
|
413
|
+
/**
|
|
414
|
+
* Returns `true` if the layer at the given index is set in {@link visibilityLayer}.
|
|
415
|
+
*/
|
|
416
|
+
getVisibilityLayerBit(layer: number /* uint32 */): boolean { return _C(this, 7092, layer) as boolean; }
|
|
417
|
+
|
|
418
|
+
/**
|
|
419
|
+
* If `true`, this {@link CanvasItem} may be drawn. Whether this {@link CanvasItem} is actually drawn depends on the visibility of all of its {@link CanvasItem} ancestors. In other words: this {@link CanvasItem} will be drawn when {@link isVisibleInTree} returns `true` and all {@link CanvasItem} ancestors share at least one {@link visibilityLayer} with this {@link CanvasItem}.
|
|
420
|
+
* **Note:** For controls that inherit {@link Popup}, the correct way to make them visible is to call one of the multiple `popup*()` functions instead.
|
|
421
|
+
*/
|
|
422
|
+
get visible(): boolean { return _C(this, 8450) as boolean; }
|
|
423
|
+
set visible(v: boolean) { _C(this, 13331, v); }
|
|
424
|
+
|
|
425
|
+
/**
|
|
426
|
+
* The color applied to this {@link CanvasItem}. This property does affect child {@link CanvasItem}s, unlike {@link selfModulate} which only affects the node itself.
|
|
427
|
+
*/
|
|
428
|
+
get modulate(): Color { return _C(this, 5576) as Color; }
|
|
429
|
+
set modulate(v: Color) { _C(this, 12081, v); }
|
|
430
|
+
|
|
431
|
+
/**
|
|
432
|
+
* The color applied to this {@link CanvasItem}. This property does **not** affect child {@link CanvasItem}s, unlike {@link modulate} which affects both the node itself and its children.
|
|
433
|
+
* **Note:** Internal children are also not affected by this property (see the `include_internal` parameter in {@link Node.addChild}). For built-in nodes this includes sliders in {@link ColorPicker}, and the tab bar in {@link TabContainer}.
|
|
434
|
+
*/
|
|
435
|
+
get selfModulate(): Color { return _C(this, 6343) as Color; }
|
|
436
|
+
set selfModulate(v: Color) { _C(this, 12694, v); }
|
|
437
|
+
|
|
438
|
+
/**
|
|
439
|
+
* If `true`, this node draws behind its parent.
|
|
440
|
+
*/
|
|
441
|
+
get showBehindParent(): boolean { return _C(this, 7903) as boolean; }
|
|
442
|
+
set showBehindParent(v: boolean) { _C(this, 11181, v); }
|
|
443
|
+
|
|
444
|
+
/**
|
|
445
|
+
* If `true`, this {@link CanvasItem} will *not* inherit its transform from parent {@link CanvasItem}s. Its draw order will also be changed to make it draw on top of other {@link CanvasItem}s that do not have {@link topLevel} set to `true`. The {@link CanvasItem} will effectively act as if it was placed as a child of a bare {@link Node}.
|
|
446
|
+
*/
|
|
447
|
+
get topLevel(): boolean { return _C(this, 8296) as boolean; }
|
|
448
|
+
set topLevel(v: boolean) { _C(this, 10543, v); }
|
|
449
|
+
|
|
450
|
+
/**
|
|
451
|
+
* The mode in which this node clips its children, acting as a mask.
|
|
452
|
+
* **Note:** Clipping nodes cannot be nested or placed within a {@link CanvasGroup}. If an ancestor of this node clips its children or is a {@link CanvasGroup}, then this node's clip mode should be set to {@link CLIP_CHILDREN_DISABLED} to avoid unexpected behavior.
|
|
453
|
+
*/
|
|
454
|
+
get clipChildren(): ClipChildrenMode { return _C(this, 4159) as ClipChildrenMode; }
|
|
455
|
+
set clipChildren(v: ClipChildrenMode) { _C(this, 10863, v); }
|
|
456
|
+
|
|
457
|
+
/**
|
|
458
|
+
* If enabled, oversampling for this {@link CanvasItem} is automatically adjusted with scale.
|
|
459
|
+
*/
|
|
460
|
+
get oversamplingWithScale(): OversamplingWithScale { return _C(this, 5780) as OversamplingWithScale; }
|
|
461
|
+
set oversamplingWithScale(v: OversamplingWithScale) { _C(this, 12231, v); }
|
|
462
|
+
|
|
463
|
+
/**
|
|
464
|
+
* The rendering layers in which this {@link CanvasItem} responds to {@link Light2D} nodes.
|
|
465
|
+
*/
|
|
466
|
+
get lightMask(): number { return _C(this, 5339) as number; }
|
|
467
|
+
set lightMask(v: number) { _C(this, 11896, v); }
|
|
468
|
+
|
|
469
|
+
/**
|
|
470
|
+
* The rendering layer in which this {@link CanvasItem} is rendered by {@link Viewport} nodes. A {@link Viewport} will render a {@link CanvasItem} if it and all its parents share a layer with the {@link Viewport}'s canvas cull mask.
|
|
471
|
+
* **Note:** A {@link CanvasItem} does not inherit its parents' visibility layers. This means that if a parent {@link CanvasItem} does not have all the same layers as its child, the child may not be visible even if both the parent and child have {@link visible} set to `true`. For example, if a parent has layer 1 and a child has layer 2, the child will not be visible in a {@link Viewport} with the canvas cull mask set to layer 1 or 2 (see {@link Viewport.canvasCullMask}). To ensure that both the parent and child are visible, the parent must have both layers 1 and 2, or the child must have {@link topLevel} set to `true`.
|
|
472
|
+
*/
|
|
473
|
+
get visibilityLayer(): number { return _C(this, 7091) as number; }
|
|
474
|
+
set visibilityLayer(v: number) { _C(this, 13319, v); }
|
|
475
|
+
|
|
476
|
+
/**
|
|
477
|
+
* The order in which this node is drawn. A node with a higher Z index will display in front of others. Must be between {@link RenderingServer.CANVAS_ITEM_Z_MIN} and {@link RenderingServer.CANVAS_ITEM_Z_MAX} (inclusive).
|
|
478
|
+
* **Note:** The Z index does **not** affect the order in which {@link CanvasItem} nodes are processed or the way input events are handled. This is especially important to keep in mind for {@link Control} nodes.
|
|
479
|
+
*/
|
|
480
|
+
get zIndex(): number { return _C(this, 7180) as number; }
|
|
481
|
+
set zIndex(v: number) { _C(this, 13405, v); }
|
|
482
|
+
|
|
483
|
+
/**
|
|
484
|
+
* If `true`, this node's final Z index is relative to its parent's Z index.
|
|
485
|
+
* For example, if {@link zIndex} is `2` and its parent's final Z index is `3`, then this node's final Z index will be `5` (`2 + 3`).
|
|
486
|
+
*/
|
|
487
|
+
get zAsRelative(): boolean { return _C(this, 8458) as boolean; }
|
|
488
|
+
set zAsRelative(v: boolean) { _C(this, 13403, v); }
|
|
489
|
+
|
|
490
|
+
/**
|
|
491
|
+
* If `true`, this and child {@link CanvasItem} nodes with a higher Y position are rendered in front of nodes with a lower Y position. If `false`, this and child {@link CanvasItem} nodes are rendered normally in scene tree order.
|
|
492
|
+
* With Y-sorting enabled on a parent node ('A') but disabled on a child node ('B'), the child node ('B') is sorted but its children ('C1', 'C2', etc.) render together on the same Y position as the child node ('B'). This allows you to organize the render order of a scene without changing the scene tree.
|
|
493
|
+
* Nodes sort relative to each other only if they are on the same {@link zIndex}.
|
|
494
|
+
*/
|
|
495
|
+
get ySortEnabled(): boolean { return _C(this, 8457) as boolean; }
|
|
496
|
+
set ySortEnabled(v: boolean) { _C(this, 13399, v); }
|
|
497
|
+
|
|
498
|
+
/**
|
|
499
|
+
* The filtering mode used to render this {@link CanvasItem}'s texture(s).
|
|
500
|
+
*/
|
|
501
|
+
get textureFilter(): TextureFilter { return _C(this, 6730) as TextureFilter; }
|
|
502
|
+
set textureFilter(v: TextureFilter) { _C(this, 13027, v); }
|
|
503
|
+
|
|
504
|
+
/**
|
|
505
|
+
* The repeating mode used to render this {@link CanvasItem}'s texture(s). It affects what happens when the texture is sampled outside its extents, for example by setting a {@link Sprite2D.regionRect} that is larger than the texture or assigning {@link Polygon2D} UV points outside the texture.
|
|
506
|
+
* **Note:** {@link TextureRect} is not affected by {@link textureRepeat}, as it uses its own texture repeating implementation.
|
|
507
|
+
*/
|
|
508
|
+
get textureRepeat(): TextureRepeat { return _C(this, 6747) as TextureRepeat; }
|
|
509
|
+
set textureRepeat(v: TextureRepeat) { _C(this, 13044, v); }
|
|
510
|
+
|
|
511
|
+
/**
|
|
512
|
+
* The material applied to this {@link CanvasItem}.
|
|
513
|
+
*/
|
|
514
|
+
get material(): Material { return _C(this, 5452) as Material; }
|
|
515
|
+
set material(v: Material) { _C(this, 11978, v); }
|
|
516
|
+
|
|
517
|
+
/**
|
|
518
|
+
* If `true`, the parent {@link CanvasItem}'s {@link material} is used as this node's material.
|
|
519
|
+
*/
|
|
520
|
+
get useParentMaterial(): boolean { return _C(this, 6985) as boolean; }
|
|
521
|
+
set useParentMaterial(v: boolean) { _C(this, 13233, v); }
|
|
522
|
+
|
|
523
|
+
/**
|
|
524
|
+
* Notification received when this node's global transform changes, if {@link isTransformNotificationEnabled} is `true`. See also {@link setNotifyTransform} and {@link getTransform}.
|
|
525
|
+
* **Note:** Many canvas items such as {@link Camera2D} or {@link CollisionObject2D} automatically enable this in order to function correctly.
|
|
526
|
+
*/
|
|
527
|
+
static readonly NOTIFICATION_TRANSFORM_CHANGED = 2000;
|
|
528
|
+
|
|
529
|
+
/**
|
|
530
|
+
* Notification received when this node's transform changes, if {@link isLocalTransformNotificationEnabled} is `true`. This is not received when a parent {@link Node2D}'s transform changes. See also {@link setNotifyLocalTransform}.
|
|
531
|
+
* **Note:** Many canvas items such as {@link Camera2D} or {@link CollisionShape2D} automatically enable this in order to function correctly.
|
|
532
|
+
*/
|
|
533
|
+
static readonly NOTIFICATION_LOCAL_TRANSFORM_CHANGED = 35;
|
|
534
|
+
|
|
535
|
+
/**
|
|
536
|
+
* The {@link CanvasItem} is requested to draw (see {@link _draw}).
|
|
537
|
+
*/
|
|
538
|
+
static readonly NOTIFICATION_DRAW = 30;
|
|
539
|
+
|
|
540
|
+
/**
|
|
541
|
+
* Notification received when this node's visibility changes (see {@link visible} and {@link isVisibleInTree}).
|
|
542
|
+
* This notification is received *before* the related {@link visibility_changed} signal.
|
|
543
|
+
*/
|
|
544
|
+
static readonly NOTIFICATION_VISIBILITY_CHANGED = 31;
|
|
545
|
+
|
|
546
|
+
/**
|
|
547
|
+
* The {@link CanvasItem} has entered the canvas.
|
|
548
|
+
*/
|
|
549
|
+
static readonly NOTIFICATION_ENTER_CANVAS = 32;
|
|
550
|
+
|
|
551
|
+
/**
|
|
552
|
+
* The {@link CanvasItem} has exited the canvas.
|
|
553
|
+
* This notification is sent in reversed order.
|
|
554
|
+
*/
|
|
555
|
+
static readonly NOTIFICATION_EXIT_CANVAS = 33;
|
|
556
|
+
|
|
557
|
+
/**
|
|
558
|
+
* Notification received when this {@link CanvasItem} is registered to a new {@link World2D} (see {@link getWorld2d}).
|
|
559
|
+
*/
|
|
560
|
+
static readonly NOTIFICATION_WORLD_2D_CHANGED = 36;
|
|
561
|
+
|
|
562
|
+
/**
|
|
563
|
+
* Emitted when the {@link CanvasItem} must redraw, *after* the related {@link NOTIFICATION_DRAW} notification, and *before* {@link _draw} is called.
|
|
564
|
+
* **Note:** Deferred connections do not allow drawing through the `draw_*` methods.
|
|
565
|
+
*/
|
|
566
|
+
get draw(): Signal<() => void> { return _G(this, 2902) as Signal<() => void>; }
|
|
567
|
+
set draw(v: (() => void) | null) { _G(this, 2902, v); }
|
|
568
|
+
|
|
569
|
+
/**
|
|
570
|
+
* Emitted when the {@link CanvasItem}'s visibility changes, either because its own {@link visible} property changed or because its visibility in the tree changed (see {@link isVisibleInTree}).
|
|
571
|
+
* This signal is emitted *after* the related {@link NOTIFICATION_VISIBILITY_CHANGED} notification.
|
|
572
|
+
*/
|
|
573
|
+
get visibilityChanged(): Signal<() => void> { return _G(this, 14772) as Signal<() => void>; }
|
|
574
|
+
set visibilityChanged(v: (() => void) | null) { _G(this, 14772, v); }
|
|
575
|
+
|
|
576
|
+
/**
|
|
577
|
+
* Emitted when this node becomes hidden, i.e. it's no longer visible in the tree (see {@link isVisibleInTree}).
|
|
578
|
+
*/
|
|
579
|
+
get hidden(): Signal<() => void> { return _G(this, 7511) as Signal<() => void>; }
|
|
580
|
+
set hidden(v: (() => void) | null) { _G(this, 7511, v); }
|
|
581
|
+
|
|
582
|
+
/**
|
|
583
|
+
* Emitted when the {@link CanvasItem}'s boundaries (position or size) change, or when an action took place that may have affected these boundaries (e.g. changing {@link Sprite2D.texture}).
|
|
584
|
+
*/
|
|
585
|
+
get itemRectChanged(): Signal<() => void> { return _G(this, 8468) as Signal<() => void>; }
|
|
586
|
+
set itemRectChanged(v: (() => void) | null) { _G(this, 8468, v); }
|
|
587
|
+
|
|
588
|
+
static readonly name = _R(183, CanvasItem);
|
|
589
|
+
}
|
|
590
|
+
|
|
591
|
+
export const TextureFilter = {
|
|
592
|
+
/**
|
|
593
|
+
* The {@link CanvasItem} will inherit the filter from its parent.
|
|
594
|
+
*/
|
|
595
|
+
TEXTURE_FILTER_PARENT_NODE: 0,
|
|
596
|
+
/**
|
|
597
|
+
* The texture filter reads from the nearest pixel only. This makes the texture look pixelated from up close, and grainy from a distance (due to mipmaps not being sampled).
|
|
598
|
+
*/
|
|
599
|
+
TEXTURE_FILTER_NEAREST: 1,
|
|
600
|
+
/**
|
|
601
|
+
* The texture filter blends between the nearest 4 pixels. This makes the texture look smooth from up close, and grainy from a distance (due to mipmaps not being sampled).
|
|
602
|
+
*/
|
|
603
|
+
TEXTURE_FILTER_LINEAR: 2,
|
|
604
|
+
/**
|
|
605
|
+
* The texture filter reads from the nearest pixel and blends between the nearest 2 mipmaps (or uses the nearest mipmap if {@link ProjectSettings.rendering/textures/defaultFilters/useNearestMipmapFilter} is `true`). This makes the texture look pixelated from up close, and smooth from a distance.
|
|
606
|
+
* Use this for non-pixel art textures that may be viewed at a low scale (e.g. due to {@link Camera2D} zoom or sprite scaling), as mipmaps are important to smooth out pixels that are smaller than on-screen pixels.
|
|
607
|
+
*/
|
|
608
|
+
TEXTURE_FILTER_NEAREST_WITH_MIPMAPS: 3,
|
|
609
|
+
/**
|
|
610
|
+
* The texture filter blends between the nearest 4 pixels and between the nearest 2 mipmaps (or uses the nearest mipmap if {@link ProjectSettings.rendering/textures/defaultFilters/useNearestMipmapFilter} is `true`). This makes the texture look smooth from up close, and smooth from a distance.
|
|
611
|
+
* Use this for non-pixel art textures that may be viewed at a low scale (e.g. due to {@link Camera2D} zoom or sprite scaling), as mipmaps are important to smooth out pixels that are smaller than on-screen pixels.
|
|
612
|
+
*/
|
|
613
|
+
TEXTURE_FILTER_LINEAR_WITH_MIPMAPS: 4,
|
|
614
|
+
/**
|
|
615
|
+
* The texture filter reads from the nearest pixel and blends between 2 mipmaps (or uses the nearest mipmap if {@link ProjectSettings.rendering/textures/defaultFilters/useNearestMipmapFilter} is `true`) based on the angle between the surface and the camera view. This makes the texture look pixelated from up close, and smooth from a distance. Anisotropic filtering improves texture quality on surfaces that are almost in line with the camera, but is slightly slower. The anisotropic filtering level can be changed by adjusting {@link ProjectSettings.rendering/textures/defaultFilters/anisotropicFilteringLevel}.
|
|
616
|
+
* **Note:** This texture filter is rarely useful in 2D projects. {@link TEXTURE_FILTER_NEAREST_WITH_MIPMAPS} is usually more appropriate in this case.
|
|
617
|
+
*/
|
|
618
|
+
TEXTURE_FILTER_NEAREST_WITH_MIPMAPS_ANISOTROPIC: 5,
|
|
619
|
+
/**
|
|
620
|
+
* The texture filter blends between the nearest 4 pixels and blends between 2 mipmaps (or uses the nearest mipmap if {@link ProjectSettings.rendering/textures/defaultFilters/useNearestMipmapFilter} is `true`) based on the angle between the surface and the camera view. This makes the texture look smooth from up close, and smooth from a distance. Anisotropic filtering improves texture quality on surfaces that are almost in line with the camera, but is slightly slower. The anisotropic filtering level can be changed by adjusting {@link ProjectSettings.rendering/textures/defaultFilters/anisotropicFilteringLevel}.
|
|
621
|
+
* **Note:** This texture filter is rarely useful in 2D projects. {@link TEXTURE_FILTER_LINEAR_WITH_MIPMAPS} is usually more appropriate in this case.
|
|
622
|
+
*/
|
|
623
|
+
TEXTURE_FILTER_LINEAR_WITH_MIPMAPS_ANISOTROPIC: 6,
|
|
624
|
+
/**
|
|
625
|
+
* Represents the size of the {@link TextureFilter} enum.
|
|
626
|
+
*/
|
|
627
|
+
TEXTURE_FILTER_MAX: 7,
|
|
628
|
+
} as const;
|
|
629
|
+
|
|
630
|
+
export type TextureFilter = (typeof TextureFilter)[keyof typeof TextureFilter];
|
|
631
|
+
|
|
632
|
+
export const TextureRepeat = {
|
|
633
|
+
/**
|
|
634
|
+
* The {@link CanvasItem} will inherit the repeat mode from its parent.
|
|
635
|
+
*/
|
|
636
|
+
TEXTURE_REPEAT_PARENT_NODE: 0,
|
|
637
|
+
/**
|
|
638
|
+
* The texture does not repeat. Sampling the texture outside its extents will result in "stretching" of the edge pixels. You can avoid this by ensuring a 1-pixel fully transparent border on each side of the texture.
|
|
639
|
+
*/
|
|
640
|
+
TEXTURE_REPEAT_DISABLED: 1,
|
|
641
|
+
/**
|
|
642
|
+
* The texture repeats when exceeding the texture's size.
|
|
643
|
+
*/
|
|
644
|
+
TEXTURE_REPEAT_ENABLED: 2,
|
|
645
|
+
/**
|
|
646
|
+
* The texture repeats when the exceeding the texture's size in a "2×2 tiled mode". Repeated textures at even positions are mirrored.
|
|
647
|
+
*/
|
|
648
|
+
TEXTURE_REPEAT_MIRROR: 3,
|
|
649
|
+
/**
|
|
650
|
+
* Represents the size of the {@link TextureRepeat} enum.
|
|
651
|
+
*/
|
|
652
|
+
TEXTURE_REPEAT_MAX: 4,
|
|
653
|
+
} as const;
|
|
654
|
+
|
|
655
|
+
export type TextureRepeat = (typeof TextureRepeat)[keyof typeof TextureRepeat];
|
|
656
|
+
|
|
657
|
+
export const ClipChildrenMode = {
|
|
658
|
+
/**
|
|
659
|
+
* Children are drawn over this node and are not clipped.
|
|
660
|
+
*/
|
|
661
|
+
CLIP_CHILDREN_DISABLED: 0,
|
|
662
|
+
/**
|
|
663
|
+
* This node is used as a mask and is **not** drawn. The mask is based on this node's alpha channel: Opaque pixels are kept, transparent pixels are discarded, and semi-transparent pixels are blended in according to their opacity. Children are clipped to this node's drawn area.
|
|
664
|
+
*/
|
|
665
|
+
CLIP_CHILDREN_ONLY: 1,
|
|
666
|
+
/**
|
|
667
|
+
* This node is used as a mask and is also drawn. The mask is based on this node's alpha channel: Opaque pixels are kept, transparent pixels are discarded, and semi-transparent pixels are blended in according to their opacity. Children are clipped to the parent's drawn area.
|
|
668
|
+
*/
|
|
669
|
+
CLIP_CHILDREN_AND_DRAW: 2,
|
|
670
|
+
/**
|
|
671
|
+
* Represents the size of the {@link ClipChildrenMode} enum.
|
|
672
|
+
*/
|
|
673
|
+
CLIP_CHILDREN_MAX: 3,
|
|
674
|
+
} as const;
|
|
675
|
+
|
|
676
|
+
export type ClipChildrenMode = (typeof ClipChildrenMode)[keyof typeof ClipChildrenMode];
|
|
677
|
+
|
|
678
|
+
export const OversamplingWithScale = {
|
|
679
|
+
/**
|
|
680
|
+
* The {@link CanvasItem} will inherit the oversampling mode from its parent.
|
|
681
|
+
*/
|
|
682
|
+
OVERSAMPLING_WITH_SCALE_PARENT_NODE: 0,
|
|
683
|
+
/**
|
|
684
|
+
* The oversampling is not affected by {@link CanvasItem} scale, and is equal to the {@link Viewport} oversampling.
|
|
685
|
+
*/
|
|
686
|
+
OVERSAMPLING_WITH_SCALE_DISABLED: 1,
|
|
687
|
+
/**
|
|
688
|
+
* The oversampling is a product of {@link CanvasItem} scale and {@link Viewport} oversampling.
|
|
689
|
+
*/
|
|
690
|
+
OVERSAMPLING_WITH_SCALE_ENABLED: 2,
|
|
691
|
+
/**
|
|
692
|
+
* Represents the size of the {@link OversamplingWithScale} enum.
|
|
693
|
+
*/
|
|
694
|
+
OVERSAMPLING_WITH_SCALE_MAX: 3,
|
|
695
|
+
} as const;
|
|
696
|
+
|
|
697
|
+
export type OversamplingWithScale = (typeof OversamplingWithScale)[keyof typeof OversamplingWithScale];
|
|
698
|
+
|