typescript-to-gdscript 0.1.1 → 0.1.3
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/README.md +4 -2
- package/dist/cli/convert.d.ts.map +1 -1
- package/dist/cli/convert.js +15 -5
- package/dist/cli/convert.js.map +1 -1
- package/dist/converter/gd-to-ts/class-scope.d.ts.map +1 -1
- package/dist/converter/gd-to-ts/class-scope.js +4 -4
- package/dist/converter/gd-to-ts/class-scope.js.map +1 -1
- package/dist/converter/gd-to-ts/expressions.d.ts.map +1 -1
- package/dist/converter/gd-to-ts/expressions.js +59 -8
- package/dist/converter/gd-to-ts/expressions.js.map +1 -1
- package/dist/converter/gd-to-ts/functions.d.ts.map +1 -1
- package/dist/converter/gd-to-ts/functions.js +29 -24
- package/dist/converter/gd-to-ts/functions.js.map +1 -1
- package/dist/converter/gd-to-ts/identifiers.d.ts +27 -0
- package/dist/converter/gd-to-ts/identifiers.d.ts.map +1 -0
- package/dist/converter/gd-to-ts/identifiers.js +76 -0
- package/dist/converter/gd-to-ts/identifiers.js.map +1 -0
- package/dist/converter/gd-to-ts/members.d.ts.map +1 -1
- package/dist/converter/gd-to-ts/members.js +15 -6
- package/dist/converter/gd-to-ts/members.js.map +1 -1
- package/dist/converter/gd-to-ts/statements.d.ts.map +1 -1
- package/dist/converter/gd-to-ts/statements.js +12 -1
- package/dist/converter/gd-to-ts/statements.js.map +1 -1
- package/dist/converter/gd-to-ts/type-inference.d.ts +33 -0
- package/dist/converter/gd-to-ts/type-inference.d.ts.map +1 -1
- package/dist/converter/gd-to-ts/type-inference.js +79 -0
- package/dist/converter/gd-to-ts/type-inference.js.map +1 -1
- package/dist/converter/ts-to-gd/access-rewrite.d.ts +40 -0
- package/dist/converter/ts-to-gd/access-rewrite.d.ts.map +1 -0
- package/dist/converter/ts-to-gd/access-rewrite.js +124 -0
- package/dist/converter/ts-to-gd/access-rewrite.js.map +1 -0
- package/dist/converter/ts-to-gd/expressions.d.ts.map +1 -1
- package/dist/converter/ts-to-gd/expressions.js +31 -7
- package/dist/converter/ts-to-gd/expressions.js.map +1 -1
- package/dist/typings/content-generators.d.ts +2 -2
- package/dist/typings/content-generators.d.ts.map +1 -1
- package/dist/typings/content-generators.js +8 -2
- package/dist/typings/content-generators.js.map +1 -1
- package/dist/typings/godot-docs.d.ts.map +1 -1
- package/dist/typings/godot-docs.js +45 -16
- package/dist/typings/godot-docs.js.map +1 -1
- package/dist/typings/override-system.d.ts.map +1 -1
- package/dist/typings/override-system.js +8 -0
- package/dist/typings/override-system.js.map +1 -1
- package/dist/typings/scene-utils.d.ts +8 -0
- package/dist/typings/scene-utils.d.ts.map +1 -1
- package/dist/typings/scene-utils.js +49 -8
- package/dist/typings/scene-utils.js.map +1 -1
- package/dist/typings/scenes.d.ts.map +1 -1
- package/dist/typings/scenes.js +17 -10
- package/dist/typings/scenes.js.map +1 -1
- package/dist/watcher/check.d.ts +87 -0
- package/dist/watcher/check.d.ts.map +1 -0
- package/dist/watcher/check.js +209 -0
- package/dist/watcher/check.js.map +1 -0
- package/dist/watcher/heal.d.ts +66 -0
- package/dist/watcher/heal.d.ts.map +1 -0
- package/dist/watcher/heal.js +132 -0
- package/dist/watcher/heal.js.map +1 -0
- package/dist/watcher/index.d.ts +1 -0
- package/dist/watcher/index.d.ts.map +1 -1
- package/dist/watcher/index.js +48 -52
- package/dist/watcher/index.js.map +1 -1
- package/package.json +1 -1
- package/typings/classes/AccessibilityServer.d.ts +405 -0
- package/typings/classes/AnimationLibrary.d.ts +4 -4
- package/typings/classes/AnimationNodeBlendSpace1D.d.ts +45 -4
- package/typings/classes/AnimationNodeBlendSpace2D.d.ts +45 -4
- package/typings/classes/Area3D.d.ts +14 -7
- package/typings/classes/AreaLight3D.d.ts +37 -0
- package/typings/classes/ArrayMesh.d.ts +15 -0
- package/typings/classes/AudioEffectAmplify.d.ts +2 -2
- package/typings/classes/AudioEffectBandLimitFilter.d.ts +1 -1
- package/typings/classes/AudioEffectBandPassFilter.d.ts +1 -1
- package/typings/classes/AudioEffectCapture.d.ts +10 -9
- package/typings/classes/AudioEffectChorus.d.ts +57 -28
- package/typings/classes/AudioEffectCompressor.d.ts +11 -9
- package/typings/classes/AudioEffectDelay.d.ts +21 -15
- package/typings/classes/AudioEffectDistortion.d.ts +19 -10
- package/typings/classes/AudioEffectEQ.d.ts +2 -2
- package/typings/classes/AudioEffectEQ10.d.ts +2 -2
- package/typings/classes/AudioEffectEQ21.d.ts +2 -2
- package/typings/classes/AudioEffectEQ6.d.ts +2 -2
- package/typings/classes/AudioEffectFilter.d.ts +25 -9
- package/typings/classes/AudioEffectHardLimiter.d.ts +8 -5
- package/typings/classes/AudioEffectHighPassFilter.d.ts +1 -1
- package/typings/classes/AudioEffectHighShelfFilter.d.ts +1 -1
- package/typings/classes/AudioEffectInstance.d.ts +1 -1
- package/typings/classes/AudioEffectLimiter.d.ts +9 -4
- package/typings/classes/AudioEffectLowPassFilter.d.ts +1 -1
- package/typings/classes/AudioEffectLowShelfFilter.d.ts +1 -1
- package/typings/classes/AudioEffectNotchFilter.d.ts +1 -1
- package/typings/classes/AudioEffectPanner.d.ts +7 -2
- package/typings/classes/AudioEffectPhaser.d.ts +9 -7
- package/typings/classes/AudioEffectPitchShift.d.ts +3 -3
- package/typings/classes/AudioEffectReverb.d.ts +17 -8
- package/typings/classes/AudioEffectSpectrumAnalyzer.d.ts +4 -5
- package/typings/classes/AudioEffectStereoEnhance.d.ts +7 -4
- package/typings/classes/AudioServer.d.ts +2 -2
- package/typings/classes/AudioStreamPlaybackResampled.d.ts +8 -0
- package/typings/classes/AudioStreamRandomizer.d.ts +10 -0
- package/typings/classes/AwaitTweener.d.ts +10 -0
- package/typings/classes/BaseButton.d.ts +1 -1
- package/typings/classes/Basis.d.ts +6 -2
- package/typings/classes/BlitMaterial.d.ts +22 -0
- package/typings/classes/CPUParticles2D.d.ts +2 -2
- package/typings/classes/CPUParticles3D.d.ts +2 -2
- package/typings/classes/Camera3D.d.ts +1 -1
- package/typings/classes/CameraAttributes.d.ts +1 -0
- package/typings/classes/CameraFeed.d.ts +4 -0
- package/typings/classes/CanvasItem.d.ts +16 -1
- package/typings/classes/CodeEdit.d.ts +6 -0
- package/typings/classes/CollisionObject2D.d.ts +6 -0
- package/typings/classes/CollisionPolygon2D.d.ts +5 -0
- package/typings/classes/CollisionShape2D.d.ts +5 -0
- package/typings/classes/Container.d.ts +7 -0
- package/typings/classes/Control.d.ts +127 -9
- package/typings/classes/Curve.d.ts +26 -1
- package/typings/classes/Curve2D.d.ts +15 -0
- package/typings/classes/Curve3D.d.ts +20 -0
- package/typings/classes/DPITexture.d.ts +14 -0
- package/typings/classes/Decal.d.ts +1 -0
- package/typings/classes/Dictionary.d.ts +74 -28
- package/typings/classes/DirAccess.d.ts +6 -1
- package/typings/classes/DisplayServer.d.ts +161 -9
- package/typings/classes/DrawableTexture2D.d.ts +43 -0
- package/typings/classes/EditorCommandPalette.d.ts +0 -2
- package/typings/classes/EditorContextMenuPlugin.d.ts +4 -0
- package/typings/classes/EditorDock.d.ts +10 -5
- package/typings/classes/EditorExportPlatform.d.ts +4 -2
- package/typings/classes/EditorExportPlugin.d.ts +7 -0
- package/typings/classes/EditorFeatureProfile.d.ts +1 -1
- package/typings/classes/EditorFileSystem.d.ts +2 -0
- package/typings/classes/EditorInspector.d.ts +10 -0
- package/typings/classes/EditorInterface.d.ts +6 -4
- package/typings/classes/EditorNode3DGizmoPlugin.d.ts +4 -0
- package/typings/classes/EditorPlugin.d.ts +4 -4
- package/typings/classes/EditorResourcePicker.d.ts +2 -1
- package/typings/classes/EditorSceneFormatImporter.d.ts +23 -0
- package/typings/classes/EditorSettings.d.ts +241 -140
- package/typings/classes/EditorSpinSlider.d.ts +6 -0
- package/typings/classes/EditorTranslationParserPlugin.d.ts +4 -0
- package/typings/classes/EditorVCSInterface.d.ts +6 -2
- package/typings/classes/Environment.d.ts +7 -2
- package/typings/classes/FileAccess.d.ts +1 -1
- package/typings/classes/FileDialog.d.ts +16 -1
- package/typings/classes/FoldableContainer.d.ts +1 -1
- package/typings/classes/Font.d.ts +15 -3
- package/typings/classes/FontVariation.d.ts +10 -0
- package/typings/classes/GDScript.d.ts +8 -0
- package/typings/classes/GDScriptLanguageProtocol.d.ts +25 -0
- package/typings/classes/GDScriptSyntaxHighlighter.d.ts +6 -0
- package/typings/classes/GDScriptTextDocument.d.ts +27 -0
- package/typings/classes/GDScriptWorkspace.d.ts +17 -0
- package/typings/classes/GPUParticles2D.d.ts +2 -2
- package/typings/classes/GPUParticles3D.d.ts +19 -2
- package/typings/classes/Geometry2D.d.ts +2 -2
- package/typings/classes/GeometryInstance3D.d.ts +1 -1
- package/typings/classes/GradientTexture2D.d.ts +2 -0
- package/typings/classes/Image.d.ts +7 -4
- package/typings/classes/ImageFormatLoader.d.ts +5 -0
- package/typings/classes/ImageTexture.d.ts +0 -2
- package/typings/classes/ImporterMesh.d.ts +6 -0
- package/typings/classes/Input.d.ts +159 -15
- package/typings/classes/InputEvent.d.ts +8 -0
- package/typings/classes/InputEventGesture.d.ts +2 -3
- package/typings/classes/InputEventMouse.d.ts +2 -3
- package/typings/classes/InputEventMouseMotion.d.ts +2 -2
- package/typings/classes/InputEventWithModifiers.d.ts +2 -3
- package/typings/classes/InputMap.d.ts +3 -0
- package/typings/classes/ItemList.d.ts +29 -2
- package/typings/classes/IterateIK3D.d.ts +6 -3
- package/typings/classes/JavaClassWrapper.d.ts +13 -0
- package/typings/classes/JavaScriptBridge.d.ts +1 -1
- package/typings/classes/Joint3D.d.ts +1 -0
- package/typings/classes/Label.d.ts +1 -0
- package/typings/classes/LabelSettings.d.ts +25 -0
- package/typings/classes/Light3D.d.ts +1 -1
- package/typings/classes/Logger.d.ts +1 -1
- package/typings/classes/LookAtModifier3D.d.ts +2 -1
- package/typings/classes/MainLoop.d.ts +4 -0
- package/typings/classes/MenuButton.d.ts +35 -0
- package/typings/classes/MeshLibrary.d.ts +2 -0
- package/typings/classes/MovieWriter.d.ts +2 -0
- package/typings/classes/MultiplayerPeerExtension.d.ts +9 -9
- package/typings/classes/NativeMenu.d.ts +10 -3
- package/typings/classes/Node.d.ts +15 -5
- package/typings/classes/Node3D.d.ts +6 -4
- package/typings/classes/OS.d.ts +3 -3
- package/typings/classes/Object.d.ts +9 -3
- package/typings/classes/OptimizedTranslation.d.ts +2 -2
- package/typings/classes/OptionButton.d.ts +51 -1
- package/typings/classes/PCKPacker.d.ts +4 -0
- package/typings/classes/PacketPeerExtension.d.ts +1 -1
- package/typings/classes/ParticleProcessMaterial.d.ts +63 -0
- package/typings/classes/PhysicsDirectBodyState2D.d.ts +2 -1
- package/typings/classes/PhysicsDirectBodyState3D.d.ts +2 -1
- package/typings/classes/PhysicsDirectSpaceState2DExtension.d.ts +6 -6
- package/typings/classes/PhysicsDirectSpaceState3DExtension.d.ts +6 -6
- package/typings/classes/PhysicsServer2D.d.ts +2 -2
- package/typings/classes/PhysicsServer2DExtension.d.ts +6 -6
- package/typings/classes/PhysicsServer3D.d.ts +145 -42
- package/typings/classes/PhysicsServer3DExtension.d.ts +1 -1
- package/typings/classes/PopupMenu.d.ts +74 -8
- package/typings/classes/PopupPanel.d.ts +2 -0
- package/typings/classes/PortableCompressedTexture2D.d.ts +0 -2
- package/typings/classes/ProjectSettings.d.ts +62 -10
- package/typings/classes/Quaternion.d.ts +2 -2
- package/typings/classes/RDAccelerationStructureGeometry.d.ts +42 -0
- package/typings/classes/RDAccelerationStructureInstance.d.ts +34 -0
- package/typings/classes/RDHitGroup.d.ts +20 -0
- package/typings/classes/RDPipelineShader.d.ts +14 -0
- package/typings/classes/RDShaderSPIRV.d.ts +30 -0
- package/typings/classes/RDShaderSource.d.ts +10 -0
- package/typings/classes/RandomNumberGenerator.d.ts +4 -2
- package/typings/classes/RenderSceneBuffersConfiguration.d.ts +4 -1
- package/typings/classes/RenderingDevice.d.ts +175 -1
- package/typings/classes/RenderingServer.d.ts +264 -14
- package/typings/classes/Resource.d.ts +4 -2
- package/typings/classes/ResourceImporterDynamicFont.d.ts +3 -1
- package/typings/classes/ResourceImporterOBJ.d.ts +1 -1
- package/typings/classes/ResourceImporterSVG.d.ts +10 -0
- package/typings/classes/ResourceImporterScene.d.ts +11 -3
- package/typings/classes/ResourceImporterTexture.d.ts +2 -2
- package/typings/classes/RichTextLabel.d.ts +14 -6
- package/typings/classes/Script.d.ts +2 -0
- package/typings/classes/ScriptEditor.d.ts +13 -0
- package/typings/classes/ScriptLanguageExtension.d.ts +7 -0
- package/typings/classes/ScrollContainer.d.ts +17 -5
- package/typings/classes/Shader.d.ts +2 -0
- package/typings/classes/Shape3D.d.ts +1 -0
- package/typings/classes/SkeletonModification2DJiggle.d.ts +4 -0
- package/typings/classes/SplitContainer.d.ts +6 -0
- package/typings/classes/SpringBoneSimulator3D.d.ts +4 -2
- package/typings/classes/SpriteFrames.d.ts +20 -4
- package/typings/classes/StreamPeerExtension.d.ts +2 -2
- package/typings/classes/String.d.ts +1 -1
- package/typings/classes/SubViewport.d.ts +4 -0
- package/typings/classes/TabBar.d.ts +20 -0
- package/typings/classes/TabContainer.d.ts +21 -3
- package/typings/classes/TextEdit.d.ts +5 -2
- package/typings/classes/TextServer.d.ts +25 -1
- package/typings/classes/TextServerExtension.d.ts +25 -1
- package/typings/classes/Texture2D.d.ts +14 -0
- package/typings/classes/TextureRect.d.ts +4 -1
- package/typings/classes/TileSet.d.ts +3 -1
- package/typings/classes/Tree.d.ts +25 -9
- package/typings/classes/TreeItem.d.ts +17 -2
- package/typings/classes/Tween.d.ts +13 -0
- package/typings/classes/UndoRedo.d.ts +2 -2
- package/typings/classes/Vector2.d.ts +4 -2
- package/typings/classes/Vector2i.d.ts +4 -2
- package/typings/classes/Vector3.d.ts +4 -2
- package/typings/classes/Vector3i.d.ts +4 -2
- package/typings/classes/Vector4.d.ts +4 -2
- package/typings/classes/Vector4i.d.ts +4 -2
- package/typings/classes/Viewport.d.ts +27 -1
- package/typings/classes/VirtualJoystick.d.ts +94 -0
- package/typings/classes/VoxelGIData.d.ts +10 -0
- package/typings/classes/Window.d.ts +41 -4
- package/typings/classes/XRCamera3D.d.ts +1 -1
- package/typings/classes/XRServer.d.ts +2 -0
- package/typings/classes/_globals.d.ts +55 -18
- package/typings/classes/index.d.ts +15 -112
- package/typings/globals/globals.d.ts +20 -0
- package/typings/godot-class-registry.json +2120 -3693
- package/typings-overrides/dictionary.d.ts +35 -15
- package/typings-overrides/object-dict.d.ts +43 -0
- package/typings/classes/VisualShader.d.ts +0 -110
- package/typings/classes/VisualShaderNode.d.ts +0 -63
- package/typings/classes/VisualShaderNodeBillboard.d.ts +0 -28
- package/typings/classes/VisualShaderNodeBooleanConstant.d.ts +0 -10
- package/typings/classes/VisualShaderNodeBooleanParameter.d.ts +0 -14
- package/typings/classes/VisualShaderNodeClamp.d.ts +0 -26
- package/typings/classes/VisualShaderNodeColorConstant.d.ts +0 -10
- package/typings/classes/VisualShaderNodeColorFunc.d.ts +0 -32
- package/typings/classes/VisualShaderNodeColorOp.d.ts +0 -32
- package/typings/classes/VisualShaderNodeColorParameter.d.ts +0 -14
- package/typings/classes/VisualShaderNodeComment.d.ts +0 -12
- package/typings/classes/VisualShaderNodeCompare.d.ts +0 -68
- package/typings/classes/VisualShaderNodeConstant.d.ts +0 -6
- package/typings/classes/VisualShaderNodeCubemap.d.ts +0 -43
- package/typings/classes/VisualShaderNodeCubemapParameter.d.ts +0 -6
- package/typings/classes/VisualShaderNodeCurveTexture.d.ts +0 -10
- package/typings/classes/VisualShaderNodeCurveXYZTexture.d.ts +0 -10
- package/typings/classes/VisualShaderNodeCustom.d.ts +0 -122
- package/typings/classes/VisualShaderNodeDerivativeFunc.d.ts +0 -56
- package/typings/classes/VisualShaderNodeDeterminant.d.ts +0 -6
- package/typings/classes/VisualShaderNodeDistanceFade.d.ts +0 -6
- package/typings/classes/VisualShaderNodeDotProduct.d.ts +0 -6
- package/typings/classes/VisualShaderNodeExpression.d.ts +0 -12
- package/typings/classes/VisualShaderNodeFaceForward.d.ts +0 -8
- package/typings/classes/VisualShaderNodeFloatConstant.d.ts +0 -10
- package/typings/classes/VisualShaderNodeFloatFunc.d.ts +0 -108
- package/typings/classes/VisualShaderNodeFloatOp.d.ts +0 -36
- package/typings/classes/VisualShaderNodeFloatParameter.d.ts +0 -52
- package/typings/classes/VisualShaderNodeFrame.d.ts +0 -35
- package/typings/classes/VisualShaderNodeFresnel.d.ts +0 -6
- package/typings/classes/VisualShaderNodeGlobalExpression.d.ts +0 -6
- package/typings/classes/VisualShaderNodeGroupBase.d.ts +0 -60
- package/typings/classes/VisualShaderNodeIf.d.ts +0 -8
- package/typings/classes/VisualShaderNodeInput.d.ts +0 -20
- package/typings/classes/VisualShaderNodeIntConstant.d.ts +0 -10
- package/typings/classes/VisualShaderNodeIntFunc.d.ts +0 -24
- package/typings/classes/VisualShaderNodeIntOp.d.ts +0 -48
- package/typings/classes/VisualShaderNodeIntParameter.d.ts +0 -58
- package/typings/classes/VisualShaderNodeIs.d.ts +0 -18
- package/typings/classes/VisualShaderNodeLinearSceneDepth.d.ts +0 -6
- package/typings/classes/VisualShaderNodeMix.d.ts +0 -28
- package/typings/classes/VisualShaderNodeMultiplyAdd.d.ts +0 -22
- package/typings/classes/VisualShaderNodeOuterProduct.d.ts +0 -6
- package/typings/classes/VisualShaderNodeOutput.d.ts +0 -6
- package/typings/classes/VisualShaderNodeParameter.d.ts +0 -32
- package/typings/classes/VisualShaderNodeParameterRef.d.ts +0 -10
- package/typings/classes/VisualShaderNodeParticleAccelerator.d.ts +0 -20
- package/typings/classes/VisualShaderNodeParticleBoxEmitter.d.ts +0 -6
- package/typings/classes/VisualShaderNodeParticleConeVelocity.d.ts +0 -6
- package/typings/classes/VisualShaderNodeParticleEmit.d.ts +0 -22
- package/typings/classes/VisualShaderNodeParticleEmitter.d.ts +0 -12
- package/typings/classes/VisualShaderNodeParticleMeshEmitter.d.ts +0 -20
- package/typings/classes/VisualShaderNodeParticleMultiplyByAxisAngle.d.ts +0 -10
- package/typings/classes/VisualShaderNodeParticleOutput.d.ts +0 -6
- package/typings/classes/VisualShaderNodeParticleRandomness.d.ts +0 -22
- package/typings/classes/VisualShaderNodeParticleRingEmitter.d.ts +0 -6
- package/typings/classes/VisualShaderNodeParticleSphereEmitter.d.ts +0 -6
- package/typings/classes/VisualShaderNodeProximityFade.d.ts +0 -6
- package/typings/classes/VisualShaderNodeRandomRange.d.ts +0 -6
- package/typings/classes/VisualShaderNodeRemap.d.ts +0 -33
- package/typings/classes/VisualShaderNodeReroute.d.ts +0 -8
- package/typings/classes/VisualShaderNodeResizableBase.d.ts +0 -10
- package/typings/classes/VisualShaderNodeRotationByAxis.d.ts +0 -6
- package/typings/classes/VisualShaderNodeSDFRaymarch.d.ts +0 -6
- package/typings/classes/VisualShaderNodeSDFToScreenUV.d.ts +0 -8
- package/typings/classes/VisualShaderNodeSample3D.d.ts +0 -18
- package/typings/classes/VisualShaderNodeScreenNormalWorldSpace.d.ts +0 -6
- package/typings/classes/VisualShaderNodeScreenUVToSDF.d.ts +0 -8
- package/typings/classes/VisualShaderNodeSmoothStep.d.ts +0 -28
- package/typings/classes/VisualShaderNodeStep.d.ts +0 -28
- package/typings/classes/VisualShaderNodeSwitch.d.ts +0 -30
- package/typings/classes/VisualShaderNodeTexture.d.ts +0 -57
- package/typings/classes/VisualShaderNodeTexture2DArray.d.ts +0 -12
- package/typings/classes/VisualShaderNodeTexture2DArrayParameter.d.ts +0 -6
- package/typings/classes/VisualShaderNodeTexture2DParameter.d.ts +0 -6
- package/typings/classes/VisualShaderNodeTexture3D.d.ts +0 -12
- package/typings/classes/VisualShaderNodeTexture3DParameter.d.ts +0 -6
- package/typings/classes/VisualShaderNodeTextureParameter.d.ts +0 -104
- package/typings/classes/VisualShaderNodeTextureParameterTriplanar.d.ts +0 -6
- package/typings/classes/VisualShaderNodeTextureSDF.d.ts +0 -6
- package/typings/classes/VisualShaderNodeTextureSDFNormal.d.ts +0 -6
- package/typings/classes/VisualShaderNodeTransformCompose.d.ts +0 -6
- package/typings/classes/VisualShaderNodeTransformConstant.d.ts +0 -10
- package/typings/classes/VisualShaderNodeTransformDecompose.d.ts +0 -6
- package/typings/classes/VisualShaderNodeTransformFunc.d.ts +0 -18
- package/typings/classes/VisualShaderNodeTransformOp.d.ts +0 -32
- package/typings/classes/VisualShaderNodeTransformParameter.d.ts +0 -14
- package/typings/classes/VisualShaderNodeTransformVecMult.d.ts +0 -22
- package/typings/classes/VisualShaderNodeUIntConstant.d.ts +0 -10
- package/typings/classes/VisualShaderNodeUIntFunc.d.ts +0 -20
- package/typings/classes/VisualShaderNodeUIntOp.d.ts +0 -48
- package/typings/classes/VisualShaderNodeUIntParameter.d.ts +0 -16
- package/typings/classes/VisualShaderNodeUVFunc.d.ts +0 -22
- package/typings/classes/VisualShaderNodeUVPolarCoord.d.ts +0 -6
- package/typings/classes/VisualShaderNodeVarying.d.ts +0 -14
- package/typings/classes/VisualShaderNodeVaryingGetter.d.ts +0 -6
- package/typings/classes/VisualShaderNodeVaryingSetter.d.ts +0 -6
- package/typings/classes/VisualShaderNodeVec2Constant.d.ts +0 -10
- package/typings/classes/VisualShaderNodeVec2Parameter.d.ts +0 -14
- package/typings/classes/VisualShaderNodeVec3Constant.d.ts +0 -10
- package/typings/classes/VisualShaderNodeVec3Parameter.d.ts +0 -14
- package/typings/classes/VisualShaderNodeVec4Constant.d.ts +0 -10
- package/typings/classes/VisualShaderNodeVec4Parameter.d.ts +0 -14
- package/typings/classes/VisualShaderNodeVectorBase.d.ts +0 -20
- package/typings/classes/VisualShaderNodeVectorCompose.d.ts +0 -8
- package/typings/classes/VisualShaderNodeVectorDecompose.d.ts +0 -8
- package/typings/classes/VisualShaderNodeVectorDistance.d.ts +0 -6
- package/typings/classes/VisualShaderNodeVectorFunc.d.ts +0 -84
- package/typings/classes/VisualShaderNodeVectorLen.d.ts +0 -6
- package/typings/classes/VisualShaderNodeVectorOp.d.ts +0 -42
- package/typings/classes/VisualShaderNodeVectorRefract.d.ts +0 -8
- package/typings/classes/VisualShaderNodeWorldPositionFromDepth.d.ts +0 -8
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
// AUTO-GENERATED from Godot class documentation.
|
|
2
|
-
// Manual overrides applied from typings-overrides/*.d.ts
|
|
3
|
-
|
|
4
|
-
/**
|
|
5
|
-
* Decomposes a {@link Vector2}, {@link Vector3} or 4D vector (represented as a {@link Quaternion}) into scalars within the visual shader graph.
|
|
6
|
-
*/
|
|
7
|
-
declare class VisualShaderNodeVectorDecompose extends VisualShaderNodeVectorBase {
|
|
8
|
-
}
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
// AUTO-GENERATED from Godot class documentation.
|
|
2
|
-
// Manual overrides applied from typings-overrides/*.d.ts
|
|
3
|
-
|
|
4
|
-
/** Returns the distance between two points. To be used within the visual shader graph. */
|
|
5
|
-
declare class VisualShaderNodeVectorDistance extends VisualShaderNodeVectorBase {
|
|
6
|
-
}
|
|
@@ -1,84 +0,0 @@
|
|
|
1
|
-
// AUTO-GENERATED from Godot class documentation.
|
|
2
|
-
// Manual overrides applied from typings-overrides/*.d.ts
|
|
3
|
-
|
|
4
|
-
/** A vector function to be used within the visual shader graph. */
|
|
5
|
-
declare class VisualShaderNodeVectorFunc extends VisualShaderNodeVectorBase {
|
|
6
|
-
/** The function to be performed. */
|
|
7
|
-
function: int;
|
|
8
|
-
set_function(value: int): void;
|
|
9
|
-
get_function(): int;
|
|
10
|
-
|
|
11
|
-
// enum Function
|
|
12
|
-
/** Normalizes the vector so that it has a length of `1` but points in the same direction. */
|
|
13
|
-
static readonly FUNC_NORMALIZE: int;
|
|
14
|
-
/** Clamps the value between `0.0` and `1.0`. */
|
|
15
|
-
static readonly FUNC_SATURATE: int;
|
|
16
|
-
/** Returns the opposite value of the parameter. */
|
|
17
|
-
static readonly FUNC_NEGATE: int;
|
|
18
|
-
/** Returns `1/vector`. */
|
|
19
|
-
static readonly FUNC_RECIPROCAL: int;
|
|
20
|
-
/** Returns the absolute value of the parameter. */
|
|
21
|
-
static readonly FUNC_ABS: int;
|
|
22
|
-
/** Returns the arc-cosine of the parameter. */
|
|
23
|
-
static readonly FUNC_ACOS: int;
|
|
24
|
-
/** Returns the inverse hyperbolic cosine of the parameter. */
|
|
25
|
-
static readonly FUNC_ACOSH: int;
|
|
26
|
-
/** Returns the arc-sine of the parameter. */
|
|
27
|
-
static readonly FUNC_ASIN: int;
|
|
28
|
-
/** Returns the inverse hyperbolic sine of the parameter. */
|
|
29
|
-
static readonly FUNC_ASINH: int;
|
|
30
|
-
/** Returns the arc-tangent of the parameter. */
|
|
31
|
-
static readonly FUNC_ATAN: int;
|
|
32
|
-
/** Returns the inverse hyperbolic tangent of the parameter. */
|
|
33
|
-
static readonly FUNC_ATANH: int;
|
|
34
|
-
/** Finds the nearest integer that is greater than or equal to the parameter. */
|
|
35
|
-
static readonly FUNC_CEIL: int;
|
|
36
|
-
/** Returns the cosine of the parameter. */
|
|
37
|
-
static readonly FUNC_COS: int;
|
|
38
|
-
/** Returns the hyperbolic cosine of the parameter. */
|
|
39
|
-
static readonly FUNC_COSH: int;
|
|
40
|
-
/** Converts a quantity in radians to degrees. */
|
|
41
|
-
static readonly FUNC_DEGREES: int;
|
|
42
|
-
/** Base-e Exponential. */
|
|
43
|
-
static readonly FUNC_EXP: int;
|
|
44
|
-
/** Base-2 Exponential. */
|
|
45
|
-
static readonly FUNC_EXP2: int;
|
|
46
|
-
/** Finds the nearest integer less than or equal to the parameter. */
|
|
47
|
-
static readonly FUNC_FLOOR: int;
|
|
48
|
-
/** Computes the fractional part of the argument. */
|
|
49
|
-
static readonly FUNC_FRACT: int;
|
|
50
|
-
/** Returns the inverse of the square root of the parameter. */
|
|
51
|
-
static readonly FUNC_INVERSE_SQRT: int;
|
|
52
|
-
/** Natural logarithm. */
|
|
53
|
-
static readonly FUNC_LOG: int;
|
|
54
|
-
/** Base-2 logarithm. */
|
|
55
|
-
static readonly FUNC_LOG2: int;
|
|
56
|
-
/** Converts a quantity in degrees to radians. */
|
|
57
|
-
static readonly FUNC_RADIANS: int;
|
|
58
|
-
/** Finds the nearest integer to the parameter. */
|
|
59
|
-
static readonly FUNC_ROUND: int;
|
|
60
|
-
/** Finds the nearest even integer to the parameter. */
|
|
61
|
-
static readonly FUNC_ROUNDEVEN: int;
|
|
62
|
-
/**
|
|
63
|
-
* Extracts the sign of the parameter, i.e. returns `-1` if the parameter is negative, `1` if it's positive and `0` otherwise.
|
|
64
|
-
*/
|
|
65
|
-
static readonly FUNC_SIGN: int;
|
|
66
|
-
/** Returns the sine of the parameter. */
|
|
67
|
-
static readonly FUNC_SIN: int;
|
|
68
|
-
/** Returns the hyperbolic sine of the parameter. */
|
|
69
|
-
static readonly FUNC_SINH: int;
|
|
70
|
-
/** Returns the square root of the parameter. */
|
|
71
|
-
static readonly FUNC_SQRT: int;
|
|
72
|
-
/** Returns the tangent of the parameter. */
|
|
73
|
-
static readonly FUNC_TAN: int;
|
|
74
|
-
/** Returns the hyperbolic tangent of the parameter. */
|
|
75
|
-
static readonly FUNC_TANH: int;
|
|
76
|
-
/**
|
|
77
|
-
* Returns a value equal to the nearest integer to the parameter whose absolute value is not larger than the absolute value of the parameter.
|
|
78
|
-
*/
|
|
79
|
-
static readonly FUNC_TRUNC: int;
|
|
80
|
-
/** Returns `1.0 - vector`. */
|
|
81
|
-
static readonly FUNC_ONEMINUS: int;
|
|
82
|
-
/** Represents the size of the {@link Function} enum. */
|
|
83
|
-
static readonly FUNC_MAX: int;
|
|
84
|
-
}
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
// AUTO-GENERATED from Godot class documentation.
|
|
2
|
-
// Manual overrides applied from typings-overrides/*.d.ts
|
|
3
|
-
|
|
4
|
-
/** Returns the length of a {@link Vector3} within the visual shader graph. */
|
|
5
|
-
declare class VisualShaderNodeVectorLen extends VisualShaderNodeVectorBase {
|
|
6
|
-
}
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
// AUTO-GENERATED from Godot class documentation.
|
|
2
|
-
// Manual overrides applied from typings-overrides/*.d.ts
|
|
3
|
-
|
|
4
|
-
/** A vector operator to be used within the visual shader graph. */
|
|
5
|
-
declare class VisualShaderNodeVectorOp extends VisualShaderNodeVectorBase {
|
|
6
|
-
/** The operator to be used. */
|
|
7
|
-
operator: int;
|
|
8
|
-
set_operator(value: int): void;
|
|
9
|
-
get_operator(): int;
|
|
10
|
-
|
|
11
|
-
// enum Operator
|
|
12
|
-
/** Adds two vectors. */
|
|
13
|
-
static readonly OP_ADD: int;
|
|
14
|
-
/** Subtracts a vector from a vector. */
|
|
15
|
-
static readonly OP_SUB: int;
|
|
16
|
-
/** Multiplies two vectors. */
|
|
17
|
-
static readonly OP_MUL: int;
|
|
18
|
-
/** Divides vector by vector. */
|
|
19
|
-
static readonly OP_DIV: int;
|
|
20
|
-
/** Returns the remainder of the two vectors. */
|
|
21
|
-
static readonly OP_MOD: int;
|
|
22
|
-
/**
|
|
23
|
-
* Returns the value of the first parameter raised to the power of the second, for each component of the vectors.
|
|
24
|
-
*/
|
|
25
|
-
static readonly OP_POW: int;
|
|
26
|
-
/** Returns the greater of two values, for each component of the vectors. */
|
|
27
|
-
static readonly OP_MAX: int;
|
|
28
|
-
/** Returns the lesser of two values, for each component of the vectors. */
|
|
29
|
-
static readonly OP_MIN: int;
|
|
30
|
-
/** Calculates the cross product of two vectors. */
|
|
31
|
-
static readonly OP_CROSS: int;
|
|
32
|
-
/** Returns the arc-tangent of the parameters. */
|
|
33
|
-
static readonly OP_ATAN2: int;
|
|
34
|
-
/**
|
|
35
|
-
* Returns the vector that points in the direction of reflection. `a` is incident vector and `b` is the normal vector.
|
|
36
|
-
*/
|
|
37
|
-
static readonly OP_REFLECT: int;
|
|
38
|
-
/** Vector step operator. Returns `0.0` if `a` is smaller than `b` and `1.0` otherwise. */
|
|
39
|
-
static readonly OP_STEP: int;
|
|
40
|
-
/** Represents the size of the {@link Operator} enum. */
|
|
41
|
-
static readonly OP_ENUM_SIZE: int;
|
|
42
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
// AUTO-GENERATED from Godot class documentation.
|
|
2
|
-
// Manual overrides applied from typings-overrides/*.d.ts
|
|
3
|
-
|
|
4
|
-
/**
|
|
5
|
-
* Returns the vector that points in the direction of refraction. For use within the visual shader graph.
|
|
6
|
-
*/
|
|
7
|
-
declare class VisualShaderNodeVectorRefract extends VisualShaderNodeVectorBase {
|
|
8
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
// AUTO-GENERATED from Godot class documentation.
|
|
2
|
-
// Manual overrides applied from typings-overrides/*.d.ts
|
|
3
|
-
|
|
4
|
-
/**
|
|
5
|
-
* A visual shader node that calculates the position of the pixel in world space using the depth texture.
|
|
6
|
-
*/
|
|
7
|
-
declare class VisualShaderNodeWorldPositionFromDepth extends VisualShaderNode {
|
|
8
|
-
}
|