diff --git a/core/doc_data.h b/core/doc_data.h index c0aa1652121..95b4790747d 100644 --- a/core/doc_data.h +++ b/core/doc_data.h @@ -698,6 +698,7 @@ public: struct ClassDoc { String name; String inherits; + String api_type; String brief_description; String description; String keywords; @@ -731,6 +732,10 @@ public: doc.inherits = p_dict["inherits"]; } + if (p_dict.has("api_type")) { + doc.api_type = p_dict["api_type"]; + } + if (p_dict.has("brief_description")) { doc.brief_description = p_dict["brief_description"]; } @@ -864,6 +869,10 @@ public: dict["inherits"] = p_doc.inherits; } + if (!p_doc.api_type.is_empty()) { + dict["api_type"] = p_doc.api_type; + } + if (!p_doc.brief_description.is_empty()) { dict["brief_description"] = p_doc.brief_description; } diff --git a/doc/class.xsd b/doc/class.xsd index 28e02e870d9..7eaddb06305 100644 --- a/doc/class.xsd +++ b/doc/class.xsd @@ -296,7 +296,8 @@ - + + diff --git a/doc/classes/AESContext.xml b/doc/classes/AESContext.xml index 1ee376b6462..6a04d2dda94 100644 --- a/doc/classes/AESContext.xml +++ b/doc/classes/AESContext.xml @@ -1,5 +1,5 @@ - + Provides access to AES encryption/decryption of raw data. diff --git a/doc/classes/AStar2D.xml b/doc/classes/AStar2D.xml index 31df1c7bd9e..73d93e1a8d4 100644 --- a/doc/classes/AStar2D.xml +++ b/doc/classes/AStar2D.xml @@ -1,5 +1,5 @@ - + An implementation of A* for finding the shortest path between two vertices on a connected graph in 2D space. diff --git a/doc/classes/AStar3D.xml b/doc/classes/AStar3D.xml index 27a459a8f69..5edc3789945 100644 --- a/doc/classes/AStar3D.xml +++ b/doc/classes/AStar3D.xml @@ -1,5 +1,5 @@ - + An implementation of A* for finding the shortest path between two vertices on a connected graph in 3D space. diff --git a/doc/classes/AStarGrid2D.xml b/doc/classes/AStarGrid2D.xml index 1a62c2b6137..2b5fce7aa8c 100644 --- a/doc/classes/AStarGrid2D.xml +++ b/doc/classes/AStarGrid2D.xml @@ -1,5 +1,5 @@ - + An implementation of A* for finding the shortest path between two points on a partial 2D grid. diff --git a/doc/classes/AcceptDialog.xml b/doc/classes/AcceptDialog.xml index 1fc85cf7625..9468bab64bf 100644 --- a/doc/classes/AcceptDialog.xml +++ b/doc/classes/AcceptDialog.xml @@ -1,5 +1,5 @@ - + A base dialog used for user notification. diff --git a/doc/classes/AccessibilityServer.xml b/doc/classes/AccessibilityServer.xml index d041eb2cb67..fad0c2ab07a 100644 --- a/doc/classes/AccessibilityServer.xml +++ b/doc/classes/AccessibilityServer.xml @@ -1,5 +1,5 @@ - + A server interface for screen reader support. diff --git a/doc/classes/AimModifier3D.xml b/doc/classes/AimModifier3D.xml index b0fb7d5222a..c36011258ca 100644 --- a/doc/classes/AimModifier3D.xml +++ b/doc/classes/AimModifier3D.xml @@ -1,5 +1,5 @@ - + The [AimModifier3D] rotates a bone to look at a reference bone. diff --git a/doc/classes/AnimatableBody2D.xml b/doc/classes/AnimatableBody2D.xml index 0218325f8ff..810893e5536 100644 --- a/doc/classes/AnimatableBody2D.xml +++ b/doc/classes/AnimatableBody2D.xml @@ -1,5 +1,5 @@ - + A 2D physics body that can't be moved by external forces. When moved manually, it affects other bodies in its path. diff --git a/doc/classes/AnimatableBody3D.xml b/doc/classes/AnimatableBody3D.xml index b18b8538e2d..ab316890da9 100644 --- a/doc/classes/AnimatableBody3D.xml +++ b/doc/classes/AnimatableBody3D.xml @@ -1,5 +1,5 @@ - + A 3D physics body that can't be moved by external forces. When moved manually, it affects other bodies in its path. diff --git a/doc/classes/AnimatedSprite2D.xml b/doc/classes/AnimatedSprite2D.xml index 487124c91a0..b2693f2d7c6 100644 --- a/doc/classes/AnimatedSprite2D.xml +++ b/doc/classes/AnimatedSprite2D.xml @@ -1,5 +1,5 @@ - + Sprite node that contains multiple textures as frames to play for animation. diff --git a/doc/classes/AnimatedSprite3D.xml b/doc/classes/AnimatedSprite3D.xml index 9484a082a0e..4f2f08bef64 100644 --- a/doc/classes/AnimatedSprite3D.xml +++ b/doc/classes/AnimatedSprite3D.xml @@ -1,5 +1,5 @@ - + 2D sprite node in 3D world, that can use multiple 2D textures for animation. diff --git a/doc/classes/AnimatedTexture.xml b/doc/classes/AnimatedTexture.xml index d443541e268..20e0ca626e4 100644 --- a/doc/classes/AnimatedTexture.xml +++ b/doc/classes/AnimatedTexture.xml @@ -1,5 +1,5 @@ - + Proxy texture for simple frame-based animations. diff --git a/doc/classes/Animation.xml b/doc/classes/Animation.xml index bc83de1bbe6..97c620536d4 100644 --- a/doc/classes/Animation.xml +++ b/doc/classes/Animation.xml @@ -1,5 +1,5 @@ - + Holds data that can be used to animate anything in the engine. diff --git a/doc/classes/AnimationLibrary.xml b/doc/classes/AnimationLibrary.xml index 51588a60526..bfd3e837055 100644 --- a/doc/classes/AnimationLibrary.xml +++ b/doc/classes/AnimationLibrary.xml @@ -1,5 +1,5 @@ - + Container for [Animation] resources. diff --git a/doc/classes/AnimationMixer.xml b/doc/classes/AnimationMixer.xml index 1c5ffec3d5a..71ef4a64e14 100644 --- a/doc/classes/AnimationMixer.xml +++ b/doc/classes/AnimationMixer.xml @@ -1,5 +1,5 @@ - + Base class for [AnimationPlayer] and [AnimationTree]. diff --git a/doc/classes/AnimationNode.xml b/doc/classes/AnimationNode.xml index a7e7457bd26..332c8ba377e 100644 --- a/doc/classes/AnimationNode.xml +++ b/doc/classes/AnimationNode.xml @@ -1,5 +1,5 @@ - + Base class for [AnimationTree] nodes. Not related to scene nodes. diff --git a/doc/classes/AnimationNodeAdd2.xml b/doc/classes/AnimationNodeAdd2.xml index af7e18bddef..bcff7e08618 100644 --- a/doc/classes/AnimationNodeAdd2.xml +++ b/doc/classes/AnimationNodeAdd2.xml @@ -1,5 +1,5 @@ - + Blends two animations additively inside of an [AnimationNodeBlendTree]. diff --git a/doc/classes/AnimationNodeAdd3.xml b/doc/classes/AnimationNodeAdd3.xml index fc9fe907b67..fd578b78c4b 100644 --- a/doc/classes/AnimationNodeAdd3.xml +++ b/doc/classes/AnimationNodeAdd3.xml @@ -1,5 +1,5 @@ - + Blends two of three animations additively inside of an [AnimationNodeBlendTree]. diff --git a/doc/classes/AnimationNodeAnimation.xml b/doc/classes/AnimationNodeAnimation.xml index b7e06147fe8..0435c61cea3 100644 --- a/doc/classes/AnimationNodeAnimation.xml +++ b/doc/classes/AnimationNodeAnimation.xml @@ -1,5 +1,5 @@ - + An input animation for an [AnimationNodeBlendTree]. diff --git a/doc/classes/AnimationNodeBlend2.xml b/doc/classes/AnimationNodeBlend2.xml index 50d785fee7a..9b14bc8690e 100644 --- a/doc/classes/AnimationNodeBlend2.xml +++ b/doc/classes/AnimationNodeBlend2.xml @@ -1,5 +1,5 @@ - + Blends two animations linearly inside of an [AnimationNodeBlendTree]. diff --git a/doc/classes/AnimationNodeBlend3.xml b/doc/classes/AnimationNodeBlend3.xml index 2efe628c17d..619e5644660 100644 --- a/doc/classes/AnimationNodeBlend3.xml +++ b/doc/classes/AnimationNodeBlend3.xml @@ -1,5 +1,5 @@ - + Blends two of three animations linearly inside of an [AnimationNodeBlendTree]. diff --git a/doc/classes/AnimationNodeBlendSpace1D.xml b/doc/classes/AnimationNodeBlendSpace1D.xml index 16f7f6a631b..24f05213c23 100644 --- a/doc/classes/AnimationNodeBlendSpace1D.xml +++ b/doc/classes/AnimationNodeBlendSpace1D.xml @@ -1,5 +1,5 @@ - + A set of [AnimationRootNode]s placed on a virtual axis, crossfading between the two adjacent ones. Used by [AnimationTree]. diff --git a/doc/classes/AnimationNodeBlendSpace2D.xml b/doc/classes/AnimationNodeBlendSpace2D.xml index 1b1f464c28f..77a4c96caf6 100644 --- a/doc/classes/AnimationNodeBlendSpace2D.xml +++ b/doc/classes/AnimationNodeBlendSpace2D.xml @@ -1,5 +1,5 @@ - + A set of [AnimationRootNode]s placed on 2D coordinates, crossfading between the three adjacent ones. Used by [AnimationTree]. diff --git a/doc/classes/AnimationNodeBlendTree.xml b/doc/classes/AnimationNodeBlendTree.xml index 3764909b7c1..9135ca8a223 100644 --- a/doc/classes/AnimationNodeBlendTree.xml +++ b/doc/classes/AnimationNodeBlendTree.xml @@ -1,5 +1,5 @@ - + A sub-tree of many type [AnimationNode]s used for complex animations. Used by [AnimationTree]. diff --git a/doc/classes/AnimationNodeExtension.xml b/doc/classes/AnimationNodeExtension.xml index c7cb411fa05..c9b9d7f8fd4 100644 --- a/doc/classes/AnimationNodeExtension.xml +++ b/doc/classes/AnimationNodeExtension.xml @@ -1,5 +1,5 @@ - + Base class for extending [AnimationRootNode]s from GDScript, C#, or C++. diff --git a/doc/classes/AnimationNodeOneShot.xml b/doc/classes/AnimationNodeOneShot.xml index 2931206f0d9..57bb75a5fb0 100644 --- a/doc/classes/AnimationNodeOneShot.xml +++ b/doc/classes/AnimationNodeOneShot.xml @@ -1,5 +1,5 @@ - + Plays an animation once in an [AnimationNodeBlendTree]. diff --git a/doc/classes/AnimationNodeOutput.xml b/doc/classes/AnimationNodeOutput.xml index 6186fdd8e15..3cd29549924 100644 --- a/doc/classes/AnimationNodeOutput.xml +++ b/doc/classes/AnimationNodeOutput.xml @@ -1,5 +1,5 @@ - + The animation output node of an [AnimationNodeBlendTree]. diff --git a/doc/classes/AnimationNodeStateMachine.xml b/doc/classes/AnimationNodeStateMachine.xml index 3f8c77d6701..f8b4a3ce7a9 100644 --- a/doc/classes/AnimationNodeStateMachine.xml +++ b/doc/classes/AnimationNodeStateMachine.xml @@ -1,5 +1,5 @@ - + A state machine with multiple [AnimationRootNode]s, used by [AnimationTree]. diff --git a/doc/classes/AnimationNodeStateMachinePlayback.xml b/doc/classes/AnimationNodeStateMachinePlayback.xml index c7087aa76e0..175254b20a0 100644 --- a/doc/classes/AnimationNodeStateMachinePlayback.xml +++ b/doc/classes/AnimationNodeStateMachinePlayback.xml @@ -1,5 +1,5 @@ - + Provides playback control for an [AnimationNodeStateMachine]. diff --git a/doc/classes/AnimationNodeStateMachineTransition.xml b/doc/classes/AnimationNodeStateMachineTransition.xml index d7dffa69162..18af0f582c3 100644 --- a/doc/classes/AnimationNodeStateMachineTransition.xml +++ b/doc/classes/AnimationNodeStateMachineTransition.xml @@ -1,5 +1,5 @@ - + A transition within an [AnimationNodeStateMachine] connecting two [AnimationRootNode]s. diff --git a/doc/classes/AnimationNodeSub2.xml b/doc/classes/AnimationNodeSub2.xml index 6aac3280be0..049d7ad9b3f 100644 --- a/doc/classes/AnimationNodeSub2.xml +++ b/doc/classes/AnimationNodeSub2.xml @@ -1,5 +1,5 @@ - + Blends two animations subtractively inside of an [AnimationNodeBlendTree]. diff --git a/doc/classes/AnimationNodeSync.xml b/doc/classes/AnimationNodeSync.xml index 57c79378c09..0cc09902eff 100644 --- a/doc/classes/AnimationNodeSync.xml +++ b/doc/classes/AnimationNodeSync.xml @@ -1,5 +1,5 @@ - + Base class for [AnimationNode]s with multiple input ports that must be synchronized. diff --git a/doc/classes/AnimationNodeTimeScale.xml b/doc/classes/AnimationNodeTimeScale.xml index 9bf75291244..67b5ad2e23f 100644 --- a/doc/classes/AnimationNodeTimeScale.xml +++ b/doc/classes/AnimationNodeTimeScale.xml @@ -1,5 +1,5 @@ - + A time-scaling animation node used in [AnimationTree]. diff --git a/doc/classes/AnimationNodeTimeSeek.xml b/doc/classes/AnimationNodeTimeSeek.xml index 865e94ec430..56cfbe87485 100644 --- a/doc/classes/AnimationNodeTimeSeek.xml +++ b/doc/classes/AnimationNodeTimeSeek.xml @@ -1,5 +1,5 @@ - + A time-seeking animation node used in [AnimationTree]. diff --git a/doc/classes/AnimationNodeTransition.xml b/doc/classes/AnimationNodeTransition.xml index af80fef73a2..ee230b6c0ac 100644 --- a/doc/classes/AnimationNodeTransition.xml +++ b/doc/classes/AnimationNodeTransition.xml @@ -1,5 +1,5 @@ - + A transition within an [AnimationTree] connecting two [AnimationNode]s. diff --git a/doc/classes/AnimationPlayer.xml b/doc/classes/AnimationPlayer.xml index db5433e4fa9..d02c3f8f27e 100644 --- a/doc/classes/AnimationPlayer.xml +++ b/doc/classes/AnimationPlayer.xml @@ -1,5 +1,5 @@ - + A node used for animation playback. diff --git a/doc/classes/AnimationRootNode.xml b/doc/classes/AnimationRootNode.xml index b24f2acd9f4..0dc8e1a12c0 100644 --- a/doc/classes/AnimationRootNode.xml +++ b/doc/classes/AnimationRootNode.xml @@ -1,5 +1,5 @@ - + Base class for [AnimationNode]s that hold one or multiple composite animations. Usually used for [member AnimationTree.tree_root]. diff --git a/doc/classes/AnimationTree.xml b/doc/classes/AnimationTree.xml index 4a63b35ba05..86d73df2f18 100644 --- a/doc/classes/AnimationTree.xml +++ b/doc/classes/AnimationTree.xml @@ -1,5 +1,5 @@ - + A node used for advanced animation transitions in an [AnimationPlayer]. diff --git a/doc/classes/Area2D.xml b/doc/classes/Area2D.xml index a89d8f75361..01633960719 100644 --- a/doc/classes/Area2D.xml +++ b/doc/classes/Area2D.xml @@ -1,5 +1,5 @@ - + A region of 2D space that detects other [CollisionObject2D]s entering or exiting it. diff --git a/doc/classes/Area3D.xml b/doc/classes/Area3D.xml index b20fde5a6c4..dce17e19189 100644 --- a/doc/classes/Area3D.xml +++ b/doc/classes/Area3D.xml @@ -1,5 +1,5 @@ - + A region of 3D space that detects other [CollisionObject3D]s entering or exiting it. diff --git a/doc/classes/ArrayMesh.xml b/doc/classes/ArrayMesh.xml index 7e0b418b55e..a782a9e4950 100644 --- a/doc/classes/ArrayMesh.xml +++ b/doc/classes/ArrayMesh.xml @@ -1,5 +1,5 @@ - + [Mesh] type that provides utility for constructing a surface from arrays. diff --git a/doc/classes/ArrayOccluder3D.xml b/doc/classes/ArrayOccluder3D.xml index 7c7b440c76d..3f90e23a3de 100644 --- a/doc/classes/ArrayOccluder3D.xml +++ b/doc/classes/ArrayOccluder3D.xml @@ -1,5 +1,5 @@ - + 3D polygon shape for use with occlusion culling in [OccluderInstance3D]. diff --git a/doc/classes/AspectRatioContainer.xml b/doc/classes/AspectRatioContainer.xml index b2cc60827bf..34db3363a37 100644 --- a/doc/classes/AspectRatioContainer.xml +++ b/doc/classes/AspectRatioContainer.xml @@ -1,5 +1,5 @@ - + A container that preserves the proportions of its child controls. diff --git a/doc/classes/AtlasTexture.xml b/doc/classes/AtlasTexture.xml index d4a39b91ef0..c6f70b67cb3 100644 --- a/doc/classes/AtlasTexture.xml +++ b/doc/classes/AtlasTexture.xml @@ -1,5 +1,5 @@ - + A texture that crops out part of another Texture2D. diff --git a/doc/classes/AudioBusLayout.xml b/doc/classes/AudioBusLayout.xml index 73c893e549f..0badcb68beb 100644 --- a/doc/classes/AudioBusLayout.xml +++ b/doc/classes/AudioBusLayout.xml @@ -1,5 +1,5 @@ - + Stores information about the audio buses. diff --git a/doc/classes/AudioEffect.xml b/doc/classes/AudioEffect.xml index eb02bf8515d..567251b6b72 100644 --- a/doc/classes/AudioEffect.xml +++ b/doc/classes/AudioEffect.xml @@ -1,5 +1,5 @@ - + Base class for audio effect resources. diff --git a/doc/classes/AudioEffectAmplify.xml b/doc/classes/AudioEffectAmplify.xml index 27603c7a2d5..e9f81c575e5 100644 --- a/doc/classes/AudioEffectAmplify.xml +++ b/doc/classes/AudioEffectAmplify.xml @@ -1,5 +1,5 @@ - + Adds a volume manipulation audio effect to an audio bus. diff --git a/doc/classes/AudioEffectBandLimitFilter.xml b/doc/classes/AudioEffectBandLimitFilter.xml index daa294dbb6c..4151c28adf2 100644 --- a/doc/classes/AudioEffectBandLimitFilter.xml +++ b/doc/classes/AudioEffectBandLimitFilter.xml @@ -1,5 +1,5 @@ - + Adds a band-limit filter to an audio bus. diff --git a/doc/classes/AudioEffectBandPassFilter.xml b/doc/classes/AudioEffectBandPassFilter.xml index 60644dde516..4427e8a08ae 100644 --- a/doc/classes/AudioEffectBandPassFilter.xml +++ b/doc/classes/AudioEffectBandPassFilter.xml @@ -1,5 +1,5 @@ - + Adds a band-pass filter to an audio bus. diff --git a/doc/classes/AudioEffectCapture.xml b/doc/classes/AudioEffectCapture.xml index 5c8eb7987ec..dea4e4eb1ea 100644 --- a/doc/classes/AudioEffectCapture.xml +++ b/doc/classes/AudioEffectCapture.xml @@ -1,5 +1,5 @@ - + Exposes audio samples from an audio bus in real-time, such that it can be accessed as data. diff --git a/doc/classes/AudioEffectChorus.xml b/doc/classes/AudioEffectChorus.xml index 6ae02cd549b..b84cc9b3e6d 100644 --- a/doc/classes/AudioEffectChorus.xml +++ b/doc/classes/AudioEffectChorus.xml @@ -1,5 +1,5 @@ - + Adds a chorus audio effect to an audio bus. Gives the impression of multiple audio sources. diff --git a/doc/classes/AudioEffectCompressor.xml b/doc/classes/AudioEffectCompressor.xml index 8720db3f3ed..6064e98a886 100644 --- a/doc/classes/AudioEffectCompressor.xml +++ b/doc/classes/AudioEffectCompressor.xml @@ -1,5 +1,5 @@ - + Adds a downward compressor audio effect to an audio bus. Allows control of the dynamic range via a volume threshold and timing controls. diff --git a/doc/classes/AudioEffectDelay.xml b/doc/classes/AudioEffectDelay.xml index 525be7bb02f..99312f8f8de 100644 --- a/doc/classes/AudioEffectDelay.xml +++ b/doc/classes/AudioEffectDelay.xml @@ -1,5 +1,5 @@ - + Adds a delay audio effect to an audio bus. Emulates an echo by playing the input audio back after a period of time. diff --git a/doc/classes/AudioEffectDistortion.xml b/doc/classes/AudioEffectDistortion.xml index 8b9115ebab6..aba5451435b 100644 --- a/doc/classes/AudioEffectDistortion.xml +++ b/doc/classes/AudioEffectDistortion.xml @@ -1,5 +1,5 @@ - + Adds a distortion audio effect to an audio bus. Remaps audio samples using a nonlinear function to achieve a distorted sound. diff --git a/doc/classes/AudioEffectEQ.xml b/doc/classes/AudioEffectEQ.xml index 67103f961d3..6ff162a0cad 100644 --- a/doc/classes/AudioEffectEQ.xml +++ b/doc/classes/AudioEffectEQ.xml @@ -1,5 +1,5 @@ - + Base class for audio equalizers (EQ). Gives you control over frequencies. Use it to create a custom equalizer if [AudioEffectEQ6], [AudioEffectEQ10], or [AudioEffectEQ21] don't fit your needs. diff --git a/doc/classes/AudioEffectEQ10.xml b/doc/classes/AudioEffectEQ10.xml index a9fea213bb2..c3b4cf9c2c6 100644 --- a/doc/classes/AudioEffectEQ10.xml +++ b/doc/classes/AudioEffectEQ10.xml @@ -1,5 +1,5 @@ - + Adds a 10-band equalizer audio effect to an audio bus. Gives you control over frequencies from 31 Hz to 16000 Hz. Each frequency can be modulated between -60/+24 dB. diff --git a/doc/classes/AudioEffectEQ21.xml b/doc/classes/AudioEffectEQ21.xml index 630ba086135..01de18a496e 100644 --- a/doc/classes/AudioEffectEQ21.xml +++ b/doc/classes/AudioEffectEQ21.xml @@ -1,5 +1,5 @@ - + Adds a 21-band equalizer audio effect to an audio bus. Gives you control over frequencies from 22 Hz to 22000 Hz. Each frequency can be modulated between -60/+24 dB. diff --git a/doc/classes/AudioEffectEQ6.xml b/doc/classes/AudioEffectEQ6.xml index 135954a00a2..5c4f93952d0 100644 --- a/doc/classes/AudioEffectEQ6.xml +++ b/doc/classes/AudioEffectEQ6.xml @@ -1,5 +1,5 @@ - + Adds a 6-band equalizer audio effect to an audio bus. Gives you control over frequencies from 32 Hz to 10000 Hz. Each frequency can be modulated between -60/+24 dB. diff --git a/doc/classes/AudioEffectFilter.xml b/doc/classes/AudioEffectFilter.xml index f47541a05ab..6725f2decfd 100644 --- a/doc/classes/AudioEffectFilter.xml +++ b/doc/classes/AudioEffectFilter.xml @@ -1,5 +1,5 @@ - + Base class for filters. Use effects that inherit this class instead of using it directly. diff --git a/doc/classes/AudioEffectHardLimiter.xml b/doc/classes/AudioEffectHardLimiter.xml index eb8747dd0b4..0b8983c384c 100644 --- a/doc/classes/AudioEffectHardLimiter.xml +++ b/doc/classes/AudioEffectHardLimiter.xml @@ -1,5 +1,5 @@ - + Adds a limiter audio effect to an audio bus. Prevents audio signals from exceeding a specified volume level. diff --git a/doc/classes/AudioEffectHighPassFilter.xml b/doc/classes/AudioEffectHighPassFilter.xml index 8eb98335d88..fc3641f0990 100644 --- a/doc/classes/AudioEffectHighPassFilter.xml +++ b/doc/classes/AudioEffectHighPassFilter.xml @@ -1,5 +1,5 @@ - + Adds a high-pass filter to an audio bus. diff --git a/doc/classes/AudioEffectHighShelfFilter.xml b/doc/classes/AudioEffectHighShelfFilter.xml index 6dd71e8ea99..57be96e94b1 100644 --- a/doc/classes/AudioEffectHighShelfFilter.xml +++ b/doc/classes/AudioEffectHighShelfFilter.xml @@ -1,5 +1,5 @@ - + Adds a high-shelf filter to an audio bus. diff --git a/doc/classes/AudioEffectInstance.xml b/doc/classes/AudioEffectInstance.xml index 8f2a1c8913a..77191c10a11 100644 --- a/doc/classes/AudioEffectInstance.xml +++ b/doc/classes/AudioEffectInstance.xml @@ -1,5 +1,5 @@ - + Manipulates the audio it receives for a given effect. diff --git a/doc/classes/AudioEffectLimiter.xml b/doc/classes/AudioEffectLimiter.xml index ebe4995b145..fa482fdc014 100644 --- a/doc/classes/AudioEffectLimiter.xml +++ b/doc/classes/AudioEffectLimiter.xml @@ -1,5 +1,5 @@ - + Adds a soft-clip limiter audio effect to an audio bus. diff --git a/doc/classes/AudioEffectLowPassFilter.xml b/doc/classes/AudioEffectLowPassFilter.xml index f59e15ab909..299247671ff 100644 --- a/doc/classes/AudioEffectLowPassFilter.xml +++ b/doc/classes/AudioEffectLowPassFilter.xml @@ -1,5 +1,5 @@ - + Adds a low-pass filter to an audio bus. diff --git a/doc/classes/AudioEffectLowShelfFilter.xml b/doc/classes/AudioEffectLowShelfFilter.xml index de026b5036a..f980c3825b4 100644 --- a/doc/classes/AudioEffectLowShelfFilter.xml +++ b/doc/classes/AudioEffectLowShelfFilter.xml @@ -1,5 +1,5 @@ - + Adds a low-shelf filter to an audio bus. diff --git a/doc/classes/AudioEffectNotchFilter.xml b/doc/classes/AudioEffectNotchFilter.xml index d8980e358c2..e5e9569d2b5 100644 --- a/doc/classes/AudioEffectNotchFilter.xml +++ b/doc/classes/AudioEffectNotchFilter.xml @@ -1,5 +1,5 @@ - + Adds a notch filter to an audio bus. diff --git a/doc/classes/AudioEffectPanner.xml b/doc/classes/AudioEffectPanner.xml index 3502e2711b5..2fd417e3e78 100644 --- a/doc/classes/AudioEffectPanner.xml +++ b/doc/classes/AudioEffectPanner.xml @@ -1,5 +1,5 @@ - + Adds a panner audio effect to an audio bus. Pans the sound left or right. diff --git a/doc/classes/AudioEffectPhaser.xml b/doc/classes/AudioEffectPhaser.xml index 0f50bf50345..fd4a2c4e75e 100644 --- a/doc/classes/AudioEffectPhaser.xml +++ b/doc/classes/AudioEffectPhaser.xml @@ -1,5 +1,5 @@ - + Adds a phaser audio effect to an audio bus. Creates several notch and peak filters that sweep across the spectrum. diff --git a/doc/classes/AudioEffectPitchShift.xml b/doc/classes/AudioEffectPitchShift.xml index 0c97214d908..f740821968e 100644 --- a/doc/classes/AudioEffectPitchShift.xml +++ b/doc/classes/AudioEffectPitchShift.xml @@ -1,5 +1,5 @@ - + Adds a pitch-shifting audio effect to an audio bus. Raises or lowers the pitch of the input audio. diff --git a/doc/classes/AudioEffectRecord.xml b/doc/classes/AudioEffectRecord.xml index 8a02444fec5..d77905f35f5 100644 --- a/doc/classes/AudioEffectRecord.xml +++ b/doc/classes/AudioEffectRecord.xml @@ -1,5 +1,5 @@ - + Audio effect used for recording the sound from an audio bus. diff --git a/doc/classes/AudioEffectReverb.xml b/doc/classes/AudioEffectReverb.xml index 80f63d435cf..5d63377eec4 100644 --- a/doc/classes/AudioEffectReverb.xml +++ b/doc/classes/AudioEffectReverb.xml @@ -1,5 +1,5 @@ - + Adds a reverberation audio effect to an audio bus. Emulates an echo by playing a blurred version of the input audio. diff --git a/doc/classes/AudioEffectSpectrumAnalyzer.xml b/doc/classes/AudioEffectSpectrumAnalyzer.xml index 07f8eb2562c..3d4f3f9baaf 100644 --- a/doc/classes/AudioEffectSpectrumAnalyzer.xml +++ b/doc/classes/AudioEffectSpectrumAnalyzer.xml @@ -1,5 +1,5 @@ - + Creates an [AudioEffectInstance] which performs frequency analysis and exposes results to be accessed in real-time. diff --git a/doc/classes/AudioEffectSpectrumAnalyzerInstance.xml b/doc/classes/AudioEffectSpectrumAnalyzerInstance.xml index a0fe6f2634c..b3ff35a9331 100644 --- a/doc/classes/AudioEffectSpectrumAnalyzerInstance.xml +++ b/doc/classes/AudioEffectSpectrumAnalyzerInstance.xml @@ -1,5 +1,5 @@ - + Queryable instance of an [AudioEffectSpectrumAnalyzer]. diff --git a/doc/classes/AudioEffectStereoEnhance.xml b/doc/classes/AudioEffectStereoEnhance.xml index 00d4621ed3b..221d82b2dc8 100644 --- a/doc/classes/AudioEffectStereoEnhance.xml +++ b/doc/classes/AudioEffectStereoEnhance.xml @@ -1,5 +1,5 @@ - + Adds a stereo manipulation audio effect to an audio bus. Controls gain of the side channels, and widens the stereo image. diff --git a/doc/classes/AudioListener2D.xml b/doc/classes/AudioListener2D.xml index 85505438e73..48c06e03414 100644 --- a/doc/classes/AudioListener2D.xml +++ b/doc/classes/AudioListener2D.xml @@ -1,5 +1,5 @@ - + Overrides the location sounds are heard from. diff --git a/doc/classes/AudioListener3D.xml b/doc/classes/AudioListener3D.xml index b764b9aae53..2b35ef283ab 100644 --- a/doc/classes/AudioListener3D.xml +++ b/doc/classes/AudioListener3D.xml @@ -1,5 +1,5 @@ - + Overrides the location sounds are heard from. diff --git a/doc/classes/AudioSample.xml b/doc/classes/AudioSample.xml index e3820c11a03..17eea0f3666 100644 --- a/doc/classes/AudioSample.xml +++ b/doc/classes/AudioSample.xml @@ -1,5 +1,5 @@ - + Base class for audio samples. diff --git a/doc/classes/AudioSamplePlayback.xml b/doc/classes/AudioSamplePlayback.xml index 74a2d5e6565..c213969463f 100644 --- a/doc/classes/AudioSamplePlayback.xml +++ b/doc/classes/AudioSamplePlayback.xml @@ -1,5 +1,5 @@ - + Meta class for playing back audio samples. diff --git a/doc/classes/AudioServer.xml b/doc/classes/AudioServer.xml index bf6cd1ee08d..13839fc8e3f 100644 --- a/doc/classes/AudioServer.xml +++ b/doc/classes/AudioServer.xml @@ -1,5 +1,5 @@ - + Server interface for low-level audio access. diff --git a/doc/classes/AudioStream.xml b/doc/classes/AudioStream.xml index eebe53d0cd8..8d0da01a8d5 100644 --- a/doc/classes/AudioStream.xml +++ b/doc/classes/AudioStream.xml @@ -1,5 +1,5 @@ - + Base class for audio streams. diff --git a/doc/classes/AudioStreamGenerator.xml b/doc/classes/AudioStreamGenerator.xml index 45f5b3e2e6f..edc8a239410 100644 --- a/doc/classes/AudioStreamGenerator.xml +++ b/doc/classes/AudioStreamGenerator.xml @@ -1,5 +1,5 @@ - + An audio stream with utilities for procedural sound generation. diff --git a/doc/classes/AudioStreamGeneratorPlayback.xml b/doc/classes/AudioStreamGeneratorPlayback.xml index 2f86eaf9e94..037912fcc61 100644 --- a/doc/classes/AudioStreamGeneratorPlayback.xml +++ b/doc/classes/AudioStreamGeneratorPlayback.xml @@ -1,5 +1,5 @@ - + Plays back audio generated using [AudioStreamGenerator]. diff --git a/doc/classes/AudioStreamMicrophone.xml b/doc/classes/AudioStreamMicrophone.xml index 90624f83819..9a616f4f1ab 100644 --- a/doc/classes/AudioStreamMicrophone.xml +++ b/doc/classes/AudioStreamMicrophone.xml @@ -1,5 +1,5 @@ - + Plays real-time audio input data. diff --git a/doc/classes/AudioStreamPlayback.xml b/doc/classes/AudioStreamPlayback.xml index 24fdaa3bd34..fd298e2722a 100644 --- a/doc/classes/AudioStreamPlayback.xml +++ b/doc/classes/AudioStreamPlayback.xml @@ -1,5 +1,5 @@ - + Meta class for playing back audio. diff --git a/doc/classes/AudioStreamPlaybackPolyphonic.xml b/doc/classes/AudioStreamPlaybackPolyphonic.xml index 894c9b22628..cee2bdc3f3a 100644 --- a/doc/classes/AudioStreamPlaybackPolyphonic.xml +++ b/doc/classes/AudioStreamPlaybackPolyphonic.xml @@ -1,5 +1,5 @@ - + Playback instance for [AudioStreamPolyphonic]. diff --git a/doc/classes/AudioStreamPlaybackResampled.xml b/doc/classes/AudioStreamPlaybackResampled.xml index c2c7fe5af78..bc3636a09bc 100644 --- a/doc/classes/AudioStreamPlaybackResampled.xml +++ b/doc/classes/AudioStreamPlaybackResampled.xml @@ -1,5 +1,5 @@ - + Playback class used for resampled [AudioStream]s. diff --git a/doc/classes/AudioStreamPlayer.xml b/doc/classes/AudioStreamPlayer.xml index dae089ea9f1..3964b6b09c1 100644 --- a/doc/classes/AudioStreamPlayer.xml +++ b/doc/classes/AudioStreamPlayer.xml @@ -1,5 +1,5 @@ - + A node for audio playback. diff --git a/doc/classes/AudioStreamPlayer2D.xml b/doc/classes/AudioStreamPlayer2D.xml index a87be223413..76e8ee022c5 100644 --- a/doc/classes/AudioStreamPlayer2D.xml +++ b/doc/classes/AudioStreamPlayer2D.xml @@ -1,5 +1,5 @@ - + Plays positional sound in 2D space. diff --git a/doc/classes/AudioStreamPlayer3D.xml b/doc/classes/AudioStreamPlayer3D.xml index 51e5f6c52c9..408c551068d 100644 --- a/doc/classes/AudioStreamPlayer3D.xml +++ b/doc/classes/AudioStreamPlayer3D.xml @@ -1,5 +1,5 @@ - + Plays positional sound in 3D space. diff --git a/doc/classes/AudioStreamPolyphonic.xml b/doc/classes/AudioStreamPolyphonic.xml index e69637b207b..3f0a2e7c71a 100644 --- a/doc/classes/AudioStreamPolyphonic.xml +++ b/doc/classes/AudioStreamPolyphonic.xml @@ -1,5 +1,5 @@ - + AudioStream that lets the user play custom streams at any time from code, simultaneously using a single player. diff --git a/doc/classes/AudioStreamRandomizer.xml b/doc/classes/AudioStreamRandomizer.xml index 3053c4dbc25..5484ab0d196 100644 --- a/doc/classes/AudioStreamRandomizer.xml +++ b/doc/classes/AudioStreamRandomizer.xml @@ -1,5 +1,5 @@ - + Wraps a pool of audio streams with pitch and volume shifting. diff --git a/doc/classes/AudioStreamWAV.xml b/doc/classes/AudioStreamWAV.xml index 28c03178b6a..7742dfc3bc8 100644 --- a/doc/classes/AudioStreamWAV.xml +++ b/doc/classes/AudioStreamWAV.xml @@ -1,5 +1,5 @@ - + Stores audio data loaded from WAV files. diff --git a/doc/classes/AwaitTweener.xml b/doc/classes/AwaitTweener.xml index 48903dd747b..19e2c55e82e 100644 --- a/doc/classes/AwaitTweener.xml +++ b/doc/classes/AwaitTweener.xml @@ -1,5 +1,5 @@ - + Awaits a specified signal. diff --git a/doc/classes/BackBufferCopy.xml b/doc/classes/BackBufferCopy.xml index 991569f719a..e78f89c8a0b 100644 --- a/doc/classes/BackBufferCopy.xml +++ b/doc/classes/BackBufferCopy.xml @@ -1,5 +1,5 @@ - + A node that copies a region of the screen to a buffer for access in shader code. diff --git a/doc/classes/BaseButton.xml b/doc/classes/BaseButton.xml index c493be6e915..b274c34dbd1 100644 --- a/doc/classes/BaseButton.xml +++ b/doc/classes/BaseButton.xml @@ -1,5 +1,5 @@ - + Abstract base class for GUI buttons. diff --git a/doc/classes/BaseMaterial3D.xml b/doc/classes/BaseMaterial3D.xml index 20cea106cdb..c255382f74d 100644 --- a/doc/classes/BaseMaterial3D.xml +++ b/doc/classes/BaseMaterial3D.xml @@ -1,5 +1,5 @@ - + Abstract base class for defining the 3D rendering properties of meshes. diff --git a/doc/classes/BitMap.xml b/doc/classes/BitMap.xml index 39e59154734..9dd7428e229 100644 --- a/doc/classes/BitMap.xml +++ b/doc/classes/BitMap.xml @@ -1,5 +1,5 @@ - + Boolean matrix. diff --git a/doc/classes/BlitMaterial.xml b/doc/classes/BlitMaterial.xml index d2b1ad7c0b1..95347b2669e 100644 --- a/doc/classes/BlitMaterial.xml +++ b/doc/classes/BlitMaterial.xml @@ -1,5 +1,5 @@ - + A material that processes blit calls to a DrawableTexture. diff --git a/doc/classes/Bone2D.xml b/doc/classes/Bone2D.xml index da7f08e53d7..3eb4fe1be49 100644 --- a/doc/classes/Bone2D.xml +++ b/doc/classes/Bone2D.xml @@ -1,5 +1,5 @@ - + A joint used with [Skeleton2D] to control and animate other nodes. diff --git a/doc/classes/BoneAttachment3D.xml b/doc/classes/BoneAttachment3D.xml index 7cda0b2e653..97d1a9026bc 100644 --- a/doc/classes/BoneAttachment3D.xml +++ b/doc/classes/BoneAttachment3D.xml @@ -1,5 +1,5 @@ - + А node that dynamically copies or overrides the 3D transform of a bone in its parent [Skeleton3D]. diff --git a/doc/classes/BoneConstraint3D.xml b/doc/classes/BoneConstraint3D.xml index a399a1b25c6..0d4a77014a8 100644 --- a/doc/classes/BoneConstraint3D.xml +++ b/doc/classes/BoneConstraint3D.xml @@ -1,5 +1,5 @@ - + A node that may modify Skeleton3D's bone with associating the two bones. diff --git a/doc/classes/BoneMap.xml b/doc/classes/BoneMap.xml index 447d3406c04..de8ea5b2a36 100644 --- a/doc/classes/BoneMap.xml +++ b/doc/classes/BoneMap.xml @@ -1,5 +1,5 @@ - + Describes a mapping of bone names for retargeting [Skeleton3D] into common names defined by a [SkeletonProfile]. diff --git a/doc/classes/BoneTwistDisperser3D.xml b/doc/classes/BoneTwistDisperser3D.xml index 8069deb968e..77b08b7d9ba 100644 --- a/doc/classes/BoneTwistDisperser3D.xml +++ b/doc/classes/BoneTwistDisperser3D.xml @@ -1,5 +1,5 @@ - + A node that propagates and disperses the child bone's twist to the parent bones. diff --git a/doc/classes/BoxContainer.xml b/doc/classes/BoxContainer.xml index 926bd8f0bd1..a219abf2f49 100644 --- a/doc/classes/BoxContainer.xml +++ b/doc/classes/BoxContainer.xml @@ -1,5 +1,5 @@ - + A container that arranges its child controls horizontally or vertically. diff --git a/doc/classes/BoxMesh.xml b/doc/classes/BoxMesh.xml index 7df874ccf44..7a005329563 100644 --- a/doc/classes/BoxMesh.xml +++ b/doc/classes/BoxMesh.xml @@ -1,5 +1,5 @@ - + Generate an axis-aligned box [PrimitiveMesh]. diff --git a/doc/classes/BoxOccluder3D.xml b/doc/classes/BoxOccluder3D.xml index ac9770fde12..cea27233d82 100644 --- a/doc/classes/BoxOccluder3D.xml +++ b/doc/classes/BoxOccluder3D.xml @@ -1,5 +1,5 @@ - + Cuboid shape for use with occlusion culling in [OccluderInstance3D]. diff --git a/doc/classes/BoxShape3D.xml b/doc/classes/BoxShape3D.xml index ead5afd89c0..8430c2791da 100644 --- a/doc/classes/BoxShape3D.xml +++ b/doc/classes/BoxShape3D.xml @@ -1,5 +1,5 @@ - + A 3D box shape used for physics collision. diff --git a/doc/classes/Button.xml b/doc/classes/Button.xml index 7fe236720c4..54528077700 100644 --- a/doc/classes/Button.xml +++ b/doc/classes/Button.xml @@ -1,5 +1,5 @@ - + A themed button that can contain text and an icon. diff --git a/doc/classes/ButtonGroup.xml b/doc/classes/ButtonGroup.xml index c5d30607316..1ff8af888c9 100644 --- a/doc/classes/ButtonGroup.xml +++ b/doc/classes/ButtonGroup.xml @@ -1,5 +1,5 @@ - + A group of buttons that doesn't allow more than one button to be pressed at a time. diff --git a/doc/classes/CCDIK3D.xml b/doc/classes/CCDIK3D.xml index 5db4ef2e246..988b4d5866d 100644 --- a/doc/classes/CCDIK3D.xml +++ b/doc/classes/CCDIK3D.xml @@ -1,5 +1,5 @@ - + Rotation based cyclic coordinate descent inverse kinematics solver. diff --git a/doc/classes/CPUParticles2D.xml b/doc/classes/CPUParticles2D.xml index dcf533d884c..20195756d34 100644 --- a/doc/classes/CPUParticles2D.xml +++ b/doc/classes/CPUParticles2D.xml @@ -1,5 +1,5 @@ - + A CPU-based 2D particle emitter. diff --git a/doc/classes/CPUParticles3D.xml b/doc/classes/CPUParticles3D.xml index 61b4911dedc..bce790ec442 100644 --- a/doc/classes/CPUParticles3D.xml +++ b/doc/classes/CPUParticles3D.xml @@ -1,5 +1,5 @@ - + A CPU-based 3D particle emitter. diff --git a/doc/classes/CallbackTweener.xml b/doc/classes/CallbackTweener.xml index 3a617d2a43d..aa3b6ee4dfd 100644 --- a/doc/classes/CallbackTweener.xml +++ b/doc/classes/CallbackTweener.xml @@ -1,5 +1,5 @@ - + Calls the specified method after optional delay. diff --git a/doc/classes/Camera2D.xml b/doc/classes/Camera2D.xml index fa26ab1fc77..f1a72cf3aa4 100644 --- a/doc/classes/Camera2D.xml +++ b/doc/classes/Camera2D.xml @@ -1,5 +1,5 @@ - + Camera node for 2D scenes. diff --git a/doc/classes/Camera3D.xml b/doc/classes/Camera3D.xml index d2b225127e0..58aa5d3f766 100644 --- a/doc/classes/Camera3D.xml +++ b/doc/classes/Camera3D.xml @@ -1,5 +1,5 @@ - + Camera node, displays from a point of view. diff --git a/doc/classes/CameraAttributes.xml b/doc/classes/CameraAttributes.xml index 8ad07693607..917345f1a72 100644 --- a/doc/classes/CameraAttributes.xml +++ b/doc/classes/CameraAttributes.xml @@ -1,5 +1,5 @@ - + Parent class for camera settings. diff --git a/doc/classes/CameraAttributesPhysical.xml b/doc/classes/CameraAttributesPhysical.xml index 86cb65a5d9d..c6e49e25d2c 100644 --- a/doc/classes/CameraAttributesPhysical.xml +++ b/doc/classes/CameraAttributesPhysical.xml @@ -1,5 +1,5 @@ - + Physically-based camera settings. diff --git a/doc/classes/CameraAttributesPractical.xml b/doc/classes/CameraAttributesPractical.xml index 59ad77a1461..d352950b7c7 100644 --- a/doc/classes/CameraAttributesPractical.xml +++ b/doc/classes/CameraAttributesPractical.xml @@ -1,5 +1,5 @@ - + Camera settings in an easy to use format. diff --git a/doc/classes/CameraFeed.xml b/doc/classes/CameraFeed.xml index 0d3c5290fce..72b7635e249 100644 --- a/doc/classes/CameraFeed.xml +++ b/doc/classes/CameraFeed.xml @@ -1,5 +1,5 @@ - + A camera feed gives you access to a single physical camera attached to your device. diff --git a/doc/classes/CameraServer.xml b/doc/classes/CameraServer.xml index 3b16768a3b0..1452d0996fd 100644 --- a/doc/classes/CameraServer.xml +++ b/doc/classes/CameraServer.xml @@ -1,5 +1,5 @@ - + Server keeping track of different cameras accessible in Godot. diff --git a/doc/classes/CameraTexture.xml b/doc/classes/CameraTexture.xml index faaf9b55fa6..bcc61563993 100644 --- a/doc/classes/CameraTexture.xml +++ b/doc/classes/CameraTexture.xml @@ -1,5 +1,5 @@ - + Texture provided by a [CameraFeed]. diff --git a/doc/classes/CanvasGroup.xml b/doc/classes/CanvasGroup.xml index 14921a23ab5..14bd1b072fd 100644 --- a/doc/classes/CanvasGroup.xml +++ b/doc/classes/CanvasGroup.xml @@ -1,5 +1,5 @@ - + Merges several 2D nodes into a single draw operation. diff --git a/doc/classes/CanvasItem.xml b/doc/classes/CanvasItem.xml index 9f125f385a4..430cdbee3f7 100644 --- a/doc/classes/CanvasItem.xml +++ b/doc/classes/CanvasItem.xml @@ -1,5 +1,5 @@ - + Abstract base class for everything in 2D space. diff --git a/doc/classes/CanvasItemMaterial.xml b/doc/classes/CanvasItemMaterial.xml index 3ba122d7ac8..258a536e513 100644 --- a/doc/classes/CanvasItemMaterial.xml +++ b/doc/classes/CanvasItemMaterial.xml @@ -1,5 +1,5 @@ - + A material for [CanvasItem]s. diff --git a/doc/classes/CanvasLayer.xml b/doc/classes/CanvasLayer.xml index 4b5cda0c397..89650727e9d 100644 --- a/doc/classes/CanvasLayer.xml +++ b/doc/classes/CanvasLayer.xml @@ -1,5 +1,5 @@ - + A node used for independent rendering of objects within a 2D scene. diff --git a/doc/classes/CanvasModulate.xml b/doc/classes/CanvasModulate.xml index 43505498b35..dd45bb1e9fd 100644 --- a/doc/classes/CanvasModulate.xml +++ b/doc/classes/CanvasModulate.xml @@ -1,5 +1,5 @@ - + A node that applies a color tint to a canvas. diff --git a/doc/classes/CanvasTexture.xml b/doc/classes/CanvasTexture.xml index a14f71cc46b..e37de45315c 100644 --- a/doc/classes/CanvasTexture.xml +++ b/doc/classes/CanvasTexture.xml @@ -1,5 +1,5 @@ - + Texture with optional normal and specular maps for use in 2D rendering. diff --git a/doc/classes/CapsuleMesh.xml b/doc/classes/CapsuleMesh.xml index 105261d788e..33d566b76dc 100644 --- a/doc/classes/CapsuleMesh.xml +++ b/doc/classes/CapsuleMesh.xml @@ -1,5 +1,5 @@ - + Class representing a capsule-shaped [PrimitiveMesh]. diff --git a/doc/classes/CapsuleShape2D.xml b/doc/classes/CapsuleShape2D.xml index 49f03c2c59a..932a71095f6 100644 --- a/doc/classes/CapsuleShape2D.xml +++ b/doc/classes/CapsuleShape2D.xml @@ -1,5 +1,5 @@ - + A 2D capsule shape used for physics collision. diff --git a/doc/classes/CapsuleShape3D.xml b/doc/classes/CapsuleShape3D.xml index 4930093dce2..5cca1189d51 100644 --- a/doc/classes/CapsuleShape3D.xml +++ b/doc/classes/CapsuleShape3D.xml @@ -1,5 +1,5 @@ - + A 3D capsule shape used for physics collision. diff --git a/doc/classes/CenterContainer.xml b/doc/classes/CenterContainer.xml index cf4207b86d3..e77ab569a94 100644 --- a/doc/classes/CenterContainer.xml +++ b/doc/classes/CenterContainer.xml @@ -1,5 +1,5 @@ - + A container that keeps child controls in its center. diff --git a/doc/classes/ChainIK3D.xml b/doc/classes/ChainIK3D.xml index 5fd75abd42b..e43030819d1 100644 --- a/doc/classes/ChainIK3D.xml +++ b/doc/classes/ChainIK3D.xml @@ -1,5 +1,5 @@ - + A [SkeletonModifier3D] to apply inverse kinematics to bone chains containing an arbitrary number of bones. diff --git a/doc/classes/CharFXTransform.xml b/doc/classes/CharFXTransform.xml index d8700b3c6e5..12c4cf55bfd 100644 --- a/doc/classes/CharFXTransform.xml +++ b/doc/classes/CharFXTransform.xml @@ -1,5 +1,5 @@ - + Controls how an individual character will be displayed in a [RichTextEffect]. diff --git a/doc/classes/CharacterBody2D.xml b/doc/classes/CharacterBody2D.xml index 42088022376..c30efbf4c72 100644 --- a/doc/classes/CharacterBody2D.xml +++ b/doc/classes/CharacterBody2D.xml @@ -1,5 +1,5 @@ - + A 2D physics body specialized for characters moved by script. diff --git a/doc/classes/CharacterBody3D.xml b/doc/classes/CharacterBody3D.xml index 3dec9ab206b..35c87703c86 100644 --- a/doc/classes/CharacterBody3D.xml +++ b/doc/classes/CharacterBody3D.xml @@ -1,5 +1,5 @@ - + A 3D physics body specialized for characters moved by script. diff --git a/doc/classes/CheckBox.xml b/doc/classes/CheckBox.xml index 4dd3724a741..d1665f560da 100644 --- a/doc/classes/CheckBox.xml +++ b/doc/classes/CheckBox.xml @@ -1,5 +1,5 @@ - + A button that represents a binary choice. diff --git a/doc/classes/CheckButton.xml b/doc/classes/CheckButton.xml index a5615678951..667e8de0a05 100644 --- a/doc/classes/CheckButton.xml +++ b/doc/classes/CheckButton.xml @@ -1,5 +1,5 @@ - + A button that represents a binary choice. diff --git a/doc/classes/CircleShape2D.xml b/doc/classes/CircleShape2D.xml index 3d0864b08a1..4bd53c7696f 100644 --- a/doc/classes/CircleShape2D.xml +++ b/doc/classes/CircleShape2D.xml @@ -1,5 +1,5 @@ - + A 2D circle shape used for physics collision. diff --git a/doc/classes/ClassDB.xml b/doc/classes/ClassDB.xml index f8ec7086479..aa0f776fe49 100644 --- a/doc/classes/ClassDB.xml +++ b/doc/classes/ClassDB.xml @@ -1,5 +1,5 @@ - + A class information repository. diff --git a/doc/classes/CodeEdit.xml b/doc/classes/CodeEdit.xml index e6c161d5f92..ee2bf18038d 100644 --- a/doc/classes/CodeEdit.xml +++ b/doc/classes/CodeEdit.xml @@ -1,5 +1,5 @@ - + A multiline text editor designed for editing code. diff --git a/doc/classes/CodeHighlighter.xml b/doc/classes/CodeHighlighter.xml index ca2caf6be50..7170fbb3770 100644 --- a/doc/classes/CodeHighlighter.xml +++ b/doc/classes/CodeHighlighter.xml @@ -1,5 +1,5 @@ - + A syntax highlighter intended for code. diff --git a/doc/classes/CollisionObject2D.xml b/doc/classes/CollisionObject2D.xml index 6189f37c23e..ff634d96711 100644 --- a/doc/classes/CollisionObject2D.xml +++ b/doc/classes/CollisionObject2D.xml @@ -1,5 +1,5 @@ - + Abstract base class for 2D physics objects. diff --git a/doc/classes/CollisionObject3D.xml b/doc/classes/CollisionObject3D.xml index d93f6a703c7..977fdd58e9a 100644 --- a/doc/classes/CollisionObject3D.xml +++ b/doc/classes/CollisionObject3D.xml @@ -1,5 +1,5 @@ - + Abstract base class for 3D physics objects. diff --git a/doc/classes/CollisionPolygon2D.xml b/doc/classes/CollisionPolygon2D.xml index 8a5bc738a78..b1afc699f17 100644 --- a/doc/classes/CollisionPolygon2D.xml +++ b/doc/classes/CollisionPolygon2D.xml @@ -1,5 +1,5 @@ - + A node that provides a polygon shape to a [CollisionObject2D] parent. diff --git a/doc/classes/CollisionPolygon3D.xml b/doc/classes/CollisionPolygon3D.xml index af1c0e55097..b4be9a044e6 100644 --- a/doc/classes/CollisionPolygon3D.xml +++ b/doc/classes/CollisionPolygon3D.xml @@ -1,5 +1,5 @@ - + A node that provides a thickened polygon shape (a prism) to a [CollisionObject3D] parent. diff --git a/doc/classes/CollisionShape2D.xml b/doc/classes/CollisionShape2D.xml index f42021d5a6d..c4a72b8300a 100644 --- a/doc/classes/CollisionShape2D.xml +++ b/doc/classes/CollisionShape2D.xml @@ -1,5 +1,5 @@ - + A node that provides a [Shape2D] to a [CollisionObject2D] parent. diff --git a/doc/classes/CollisionShape3D.xml b/doc/classes/CollisionShape3D.xml index 4ba0a049824..e8016f9ee31 100644 --- a/doc/classes/CollisionShape3D.xml +++ b/doc/classes/CollisionShape3D.xml @@ -1,5 +1,5 @@ - + A node that provides a [Shape3D] to a [CollisionObject3D] parent. diff --git a/doc/classes/ColorPalette.xml b/doc/classes/ColorPalette.xml index 045d01370b0..fb79e93a56b 100644 --- a/doc/classes/ColorPalette.xml +++ b/doc/classes/ColorPalette.xml @@ -1,5 +1,5 @@ - + A resource class for managing a palette of colors, which can be loaded and saved using [ColorPicker]. diff --git a/doc/classes/ColorPicker.xml b/doc/classes/ColorPicker.xml index b0d491fc67e..99ea7a8ea14 100644 --- a/doc/classes/ColorPicker.xml +++ b/doc/classes/ColorPicker.xml @@ -1,5 +1,5 @@ - + A widget that provides an interface for selecting or modifying a color. diff --git a/doc/classes/ColorPickerButton.xml b/doc/classes/ColorPickerButton.xml index 0852929fe67..18ad710d0f8 100644 --- a/doc/classes/ColorPickerButton.xml +++ b/doc/classes/ColorPickerButton.xml @@ -1,5 +1,5 @@ - + A button that brings up a [ColorPicker] when pressed. diff --git a/doc/classes/ColorRect.xml b/doc/classes/ColorRect.xml index 6b2ddd748ea..58160b32451 100644 --- a/doc/classes/ColorRect.xml +++ b/doc/classes/ColorRect.xml @@ -1,5 +1,5 @@ - + A control that displays a solid color rectangle. diff --git a/doc/classes/Compositor.xml b/doc/classes/Compositor.xml index 0732526957b..f322fa87a9e 100644 --- a/doc/classes/Compositor.xml +++ b/doc/classes/Compositor.xml @@ -1,5 +1,5 @@ - + Stores attributes used to customize how a Viewport is rendered. diff --git a/doc/classes/CompositorEffect.xml b/doc/classes/CompositorEffect.xml index a3fd6e35f31..a2b5f0fed42 100644 --- a/doc/classes/CompositorEffect.xml +++ b/doc/classes/CompositorEffect.xml @@ -1,5 +1,5 @@ - + This resource allows for creating a custom rendering effect. diff --git a/doc/classes/CompressedCubemap.xml b/doc/classes/CompressedCubemap.xml index 406ab4909ab..33879bdff9d 100644 --- a/doc/classes/CompressedCubemap.xml +++ b/doc/classes/CompressedCubemap.xml @@ -1,5 +1,5 @@ - + An optionally compressed [Cubemap]. diff --git a/doc/classes/CompressedCubemapArray.xml b/doc/classes/CompressedCubemapArray.xml index 195449ee99b..692bfad9074 100644 --- a/doc/classes/CompressedCubemapArray.xml +++ b/doc/classes/CompressedCubemapArray.xml @@ -1,5 +1,5 @@ - + An optionally compressed [CubemapArray]. diff --git a/doc/classes/CompressedTexture2D.xml b/doc/classes/CompressedTexture2D.xml index cc4c4c81826..21d2900b701 100644 --- a/doc/classes/CompressedTexture2D.xml +++ b/doc/classes/CompressedTexture2D.xml @@ -1,5 +1,5 @@ - + Texture with 2 dimensions, optionally compressed. diff --git a/doc/classes/CompressedTexture2DArray.xml b/doc/classes/CompressedTexture2DArray.xml index 6570e8f9318..34a6cbda1e5 100644 --- a/doc/classes/CompressedTexture2DArray.xml +++ b/doc/classes/CompressedTexture2DArray.xml @@ -1,5 +1,5 @@ - + Array of 2-dimensional textures, optionally compressed. diff --git a/doc/classes/CompressedTexture3D.xml b/doc/classes/CompressedTexture3D.xml index 797fbc9da51..7ee9dc097ba 100644 --- a/doc/classes/CompressedTexture3D.xml +++ b/doc/classes/CompressedTexture3D.xml @@ -1,5 +1,5 @@ - + Texture with 3 dimensions, optionally compressed. diff --git a/doc/classes/CompressedTextureLayered.xml b/doc/classes/CompressedTextureLayered.xml index e661055f823..f126dccc611 100644 --- a/doc/classes/CompressedTextureLayered.xml +++ b/doc/classes/CompressedTextureLayered.xml @@ -1,5 +1,5 @@ - + Base class for texture arrays that can optionally be compressed. diff --git a/doc/classes/ConcavePolygonShape2D.xml b/doc/classes/ConcavePolygonShape2D.xml index 6baf0f380f2..44a1752a756 100644 --- a/doc/classes/ConcavePolygonShape2D.xml +++ b/doc/classes/ConcavePolygonShape2D.xml @@ -1,5 +1,5 @@ - + A 2D polyline shape used for physics collision. diff --git a/doc/classes/ConcavePolygonShape3D.xml b/doc/classes/ConcavePolygonShape3D.xml index 5c93325b63d..c4495fdd80d 100644 --- a/doc/classes/ConcavePolygonShape3D.xml +++ b/doc/classes/ConcavePolygonShape3D.xml @@ -1,5 +1,5 @@ - + A 3D trimesh shape used for physics collision. diff --git a/doc/classes/ConeTwistJoint3D.xml b/doc/classes/ConeTwistJoint3D.xml index d95c9eb1f12..d843dcd07c5 100644 --- a/doc/classes/ConeTwistJoint3D.xml +++ b/doc/classes/ConeTwistJoint3D.xml @@ -1,5 +1,5 @@ - + A physics joint that connects two 3D physics bodies in a way that simulates a ball-and-socket joint. diff --git a/doc/classes/ConfigFile.xml b/doc/classes/ConfigFile.xml index 8ec65c360bc..a8723343289 100644 --- a/doc/classes/ConfigFile.xml +++ b/doc/classes/ConfigFile.xml @@ -1,5 +1,5 @@ - + Helper class to handle INI-style files. diff --git a/doc/classes/ConfirmationDialog.xml b/doc/classes/ConfirmationDialog.xml index d50504f8672..51ce46d1977 100644 --- a/doc/classes/ConfirmationDialog.xml +++ b/doc/classes/ConfirmationDialog.xml @@ -1,5 +1,5 @@ - + A dialog used for confirmation of actions. diff --git a/doc/classes/Container.xml b/doc/classes/Container.xml index f9d1433a60d..335b41cc47a 100644 --- a/doc/classes/Container.xml +++ b/doc/classes/Container.xml @@ -1,5 +1,5 @@ - + Base class for all GUI containers. diff --git a/doc/classes/Control.xml b/doc/classes/Control.xml index 64f47241973..88824278a4a 100644 --- a/doc/classes/Control.xml +++ b/doc/classes/Control.xml @@ -1,5 +1,5 @@ - + Base class for all GUI controls. Adapts its position and size based on its parent control. diff --git a/doc/classes/ConvertTransformModifier3D.xml b/doc/classes/ConvertTransformModifier3D.xml index 0c8b28588df..6df3187d63e 100644 --- a/doc/classes/ConvertTransformModifier3D.xml +++ b/doc/classes/ConvertTransformModifier3D.xml @@ -1,5 +1,5 @@ - + A [SkeletonModifier3D] that apply transform to the bone which converted from reference. diff --git a/doc/classes/ConvexPolygonShape2D.xml b/doc/classes/ConvexPolygonShape2D.xml index 984787d3489..8a6c1857c45 100644 --- a/doc/classes/ConvexPolygonShape2D.xml +++ b/doc/classes/ConvexPolygonShape2D.xml @@ -1,5 +1,5 @@ - + A 2D convex polygon shape used for physics collision. diff --git a/doc/classes/ConvexPolygonShape3D.xml b/doc/classes/ConvexPolygonShape3D.xml index 98c3459289a..45a0148ec80 100644 --- a/doc/classes/ConvexPolygonShape3D.xml +++ b/doc/classes/ConvexPolygonShape3D.xml @@ -1,5 +1,5 @@ - + A 3D convex polyhedron shape used for physics collision. diff --git a/doc/classes/CopyTransformModifier3D.xml b/doc/classes/CopyTransformModifier3D.xml index 1c5c3947680..1825bea8fc5 100644 --- a/doc/classes/CopyTransformModifier3D.xml +++ b/doc/classes/CopyTransformModifier3D.xml @@ -1,5 +1,5 @@ - + A [SkeletonModifier3D] that apply transform to the bone which copied from reference. diff --git a/doc/classes/Crypto.xml b/doc/classes/Crypto.xml index 0effd54fb9a..2781a5dad2f 100644 --- a/doc/classes/Crypto.xml +++ b/doc/classes/Crypto.xml @@ -1,5 +1,5 @@ - + Provides access to advanced cryptographic functionalities. diff --git a/doc/classes/CryptoKey.xml b/doc/classes/CryptoKey.xml index dd128b6806a..c69ed5ad187 100644 --- a/doc/classes/CryptoKey.xml +++ b/doc/classes/CryptoKey.xml @@ -1,5 +1,5 @@ - + A cryptographic key (RSA or elliptic-curve). diff --git a/doc/classes/Cubemap.xml b/doc/classes/Cubemap.xml index acfb8a02518..7009e22952c 100644 --- a/doc/classes/Cubemap.xml +++ b/doc/classes/Cubemap.xml @@ -1,5 +1,5 @@ - + Six square textures representing the faces of a cube. Commonly used as a skybox. diff --git a/doc/classes/CubemapArray.xml b/doc/classes/CubemapArray.xml index 47786611f8e..7aa17acb3ec 100644 --- a/doc/classes/CubemapArray.xml +++ b/doc/classes/CubemapArray.xml @@ -1,5 +1,5 @@ - + An array of [Cubemap]s, stored together and with a single reference. diff --git a/doc/classes/Curve.xml b/doc/classes/Curve.xml index cdf96bd0e51..a21ecaa59fe 100644 --- a/doc/classes/Curve.xml +++ b/doc/classes/Curve.xml @@ -1,5 +1,5 @@ - + A mathematical curve. diff --git a/doc/classes/Curve2D.xml b/doc/classes/Curve2D.xml index eef28f1f211..db9135f0fd4 100644 --- a/doc/classes/Curve2D.xml +++ b/doc/classes/Curve2D.xml @@ -1,5 +1,5 @@ - + Describes a Bézier curve in 2D space. diff --git a/doc/classes/Curve3D.xml b/doc/classes/Curve3D.xml index fbaf0f7ffee..2c0f7a4d30f 100644 --- a/doc/classes/Curve3D.xml +++ b/doc/classes/Curve3D.xml @@ -1,5 +1,5 @@ - + Describes a Bézier curve in 3D space. diff --git a/doc/classes/CurveTexture.xml b/doc/classes/CurveTexture.xml index ed4a2f2d357..ae4d6c40be6 100644 --- a/doc/classes/CurveTexture.xml +++ b/doc/classes/CurveTexture.xml @@ -1,5 +1,5 @@ - + A 1D texture where pixel brightness corresponds to points on a curve. diff --git a/doc/classes/CurveXYZTexture.xml b/doc/classes/CurveXYZTexture.xml index 472ce7bb99a..7c2ab88d786 100644 --- a/doc/classes/CurveXYZTexture.xml +++ b/doc/classes/CurveXYZTexture.xml @@ -1,5 +1,5 @@ - + A 1D texture where the red, green, and blue color channels correspond to points on 3 curves. diff --git a/doc/classes/CylinderMesh.xml b/doc/classes/CylinderMesh.xml index 34c192e4dbd..1b9a31d6319 100644 --- a/doc/classes/CylinderMesh.xml +++ b/doc/classes/CylinderMesh.xml @@ -1,5 +1,5 @@ - + Class representing a cylindrical [PrimitiveMesh]. diff --git a/doc/classes/CylinderShape3D.xml b/doc/classes/CylinderShape3D.xml index db98cac6e3e..20bdaa789c6 100644 --- a/doc/classes/CylinderShape3D.xml +++ b/doc/classes/CylinderShape3D.xml @@ -1,5 +1,5 @@ - + A 3D cylinder shape used for physics collision. diff --git a/doc/classes/DPITexture.xml b/doc/classes/DPITexture.xml index 5925cbcd532..053a25a413d 100644 --- a/doc/classes/DPITexture.xml +++ b/doc/classes/DPITexture.xml @@ -1,5 +1,5 @@ - + An automatically scalable [Texture2D] based on an SVG image. diff --git a/doc/classes/DTLSServer.xml b/doc/classes/DTLSServer.xml index f44a8e01ab8..115d5cc42e2 100644 --- a/doc/classes/DTLSServer.xml +++ b/doc/classes/DTLSServer.xml @@ -1,5 +1,5 @@ - + Helper class to implement a DTLS server. diff --git a/doc/classes/DampedSpringJoint2D.xml b/doc/classes/DampedSpringJoint2D.xml index c1ddebdca75..d38a149cce3 100644 --- a/doc/classes/DampedSpringJoint2D.xml +++ b/doc/classes/DampedSpringJoint2D.xml @@ -1,5 +1,5 @@ - + A physics joint that connects two 2D physics bodies with a spring-like force. diff --git a/doc/classes/Decal.xml b/doc/classes/Decal.xml index 9418f53f2b9..1e502278521 100644 --- a/doc/classes/Decal.xml +++ b/doc/classes/Decal.xml @@ -1,5 +1,5 @@ - + Node that projects a texture onto a [MeshInstance3D]. diff --git a/doc/classes/DirAccess.xml b/doc/classes/DirAccess.xml index b21b507a936..853e766cae4 100644 --- a/doc/classes/DirAccess.xml +++ b/doc/classes/DirAccess.xml @@ -1,5 +1,5 @@ - + Provides methods for managing directories and their content. diff --git a/doc/classes/DirectionalLight2D.xml b/doc/classes/DirectionalLight2D.xml index b4a389e66d1..f161311b2d8 100644 --- a/doc/classes/DirectionalLight2D.xml +++ b/doc/classes/DirectionalLight2D.xml @@ -1,5 +1,5 @@ - + Directional 2D light from a distance. diff --git a/doc/classes/DirectionalLight3D.xml b/doc/classes/DirectionalLight3D.xml index faeed289fe7..a08ac19538c 100644 --- a/doc/classes/DirectionalLight3D.xml +++ b/doc/classes/DirectionalLight3D.xml @@ -1,5 +1,5 @@ - + Directional light from a distance, as from the Sun. diff --git a/doc/classes/DisplayServer.xml b/doc/classes/DisplayServer.xml index 2d575468042..bb6e8eeee86 100644 --- a/doc/classes/DisplayServer.xml +++ b/doc/classes/DisplayServer.xml @@ -1,5 +1,5 @@ - + A server interface for low-level window management. diff --git a/doc/classes/DrawableTexture2D.xml b/doc/classes/DrawableTexture2D.xml index c07a294c9da..6d3cfb5c233 100644 --- a/doc/classes/DrawableTexture2D.xml +++ b/doc/classes/DrawableTexture2D.xml @@ -1,5 +1,5 @@ - + A 2D texture that supports drawing to itself via Blit calls. diff --git a/doc/classes/EditorCommandPalette.xml b/doc/classes/EditorCommandPalette.xml index e6af82b1c32..c7e5dc3a616 100644 --- a/doc/classes/EditorCommandPalette.xml +++ b/doc/classes/EditorCommandPalette.xml @@ -1,5 +1,5 @@ - + Godot editor's command palette. diff --git a/doc/classes/EditorContextMenuPlugin.xml b/doc/classes/EditorContextMenuPlugin.xml index 07d7a8e51a8..c85fde3d7f7 100644 --- a/doc/classes/EditorContextMenuPlugin.xml +++ b/doc/classes/EditorContextMenuPlugin.xml @@ -1,5 +1,5 @@ - + Plugin for adding custom context menus in the editor. diff --git a/doc/classes/EditorDebuggerPlugin.xml b/doc/classes/EditorDebuggerPlugin.xml index 0b1640c91c9..2c23a20e82f 100644 --- a/doc/classes/EditorDebuggerPlugin.xml +++ b/doc/classes/EditorDebuggerPlugin.xml @@ -1,5 +1,5 @@ - + A base class to implement debugger plugins. diff --git a/doc/classes/EditorDebuggerSession.xml b/doc/classes/EditorDebuggerSession.xml index 4bd52f9d04a..e96ce6ed56f 100644 --- a/doc/classes/EditorDebuggerSession.xml +++ b/doc/classes/EditorDebuggerSession.xml @@ -1,5 +1,5 @@ - + A class to interact with the editor debugger. diff --git a/doc/classes/EditorDock.xml b/doc/classes/EditorDock.xml index ed43f427296..88dedff9f94 100644 --- a/doc/classes/EditorDock.xml +++ b/doc/classes/EditorDock.xml @@ -1,5 +1,5 @@ - + Dockable container for the editor. diff --git a/doc/classes/EditorExportPlatform.xml b/doc/classes/EditorExportPlatform.xml index c4f044d6e1e..07b18cf1bb2 100644 --- a/doc/classes/EditorExportPlatform.xml +++ b/doc/classes/EditorExportPlatform.xml @@ -1,5 +1,5 @@ - + Identifies a supported export platform, and internally provides the functionality of exporting to that platform. diff --git a/doc/classes/EditorExportPlatformAppleEmbedded.xml b/doc/classes/EditorExportPlatformAppleEmbedded.xml index 790ef3a88da..507302d2356 100644 --- a/doc/classes/EditorExportPlatformAppleEmbedded.xml +++ b/doc/classes/EditorExportPlatformAppleEmbedded.xml @@ -1,5 +1,5 @@ - + Base class for the Apple embedded platform exporters (iOS and visionOS). diff --git a/doc/classes/EditorExportPlatformExtension.xml b/doc/classes/EditorExportPlatformExtension.xml index 33f67ce0e03..4107a325432 100644 --- a/doc/classes/EditorExportPlatformExtension.xml +++ b/doc/classes/EditorExportPlatformExtension.xml @@ -1,5 +1,5 @@ - + Base class for custom [EditorExportPlatform] implementations (plugins). diff --git a/doc/classes/EditorExportPlatformPC.xml b/doc/classes/EditorExportPlatformPC.xml index 07e46c857c2..5722aa9fb27 100644 --- a/doc/classes/EditorExportPlatformPC.xml +++ b/doc/classes/EditorExportPlatformPC.xml @@ -1,5 +1,5 @@ - + Base class for the desktop platform exporter (Windows and Linux/BSD). diff --git a/doc/classes/EditorExportPlugin.xml b/doc/classes/EditorExportPlugin.xml index 69b7ca7e07c..5eccda57c0d 100644 --- a/doc/classes/EditorExportPlugin.xml +++ b/doc/classes/EditorExportPlugin.xml @@ -1,5 +1,5 @@ - + A script that is executed when exporting the project. diff --git a/doc/classes/EditorExportPreset.xml b/doc/classes/EditorExportPreset.xml index c2e9c293c35..15cd4f6def5 100644 --- a/doc/classes/EditorExportPreset.xml +++ b/doc/classes/EditorExportPreset.xml @@ -1,5 +1,5 @@ - + Export preset configuration. diff --git a/doc/classes/EditorFeatureProfile.xml b/doc/classes/EditorFeatureProfile.xml index 33d9d4cf96a..4a807d34d2e 100644 --- a/doc/classes/EditorFeatureProfile.xml +++ b/doc/classes/EditorFeatureProfile.xml @@ -1,5 +1,5 @@ - + An editor feature profile which can be used to disable specific features. diff --git a/doc/classes/EditorFileDialog.xml b/doc/classes/EditorFileDialog.xml index 5d51aaadbab..6bd03b378d2 100644 --- a/doc/classes/EditorFileDialog.xml +++ b/doc/classes/EditorFileDialog.xml @@ -1,5 +1,5 @@ - + A modified version of [FileDialog] used by the editor. diff --git a/doc/classes/EditorFileSystem.xml b/doc/classes/EditorFileSystem.xml index 8a41b04397b..9aa3109ec61 100644 --- a/doc/classes/EditorFileSystem.xml +++ b/doc/classes/EditorFileSystem.xml @@ -1,5 +1,5 @@ - + Resource filesystem, as the editor sees it. diff --git a/doc/classes/EditorFileSystemDirectory.xml b/doc/classes/EditorFileSystemDirectory.xml index e271b3156e0..50d29aa9522 100644 --- a/doc/classes/EditorFileSystemDirectory.xml +++ b/doc/classes/EditorFileSystemDirectory.xml @@ -1,5 +1,5 @@ - + A directory for the resource filesystem. diff --git a/doc/classes/EditorFileSystemImportFormatSupportQuery.xml b/doc/classes/EditorFileSystemImportFormatSupportQuery.xml index 98f2cc5f771..920f1b32c46 100644 --- a/doc/classes/EditorFileSystemImportFormatSupportQuery.xml +++ b/doc/classes/EditorFileSystemImportFormatSupportQuery.xml @@ -1,5 +1,5 @@ - + Used to query and configure import format support. diff --git a/doc/classes/EditorImportPlugin.xml b/doc/classes/EditorImportPlugin.xml index 7e1ca60947b..472d2a50868 100644 --- a/doc/classes/EditorImportPlugin.xml +++ b/doc/classes/EditorImportPlugin.xml @@ -1,5 +1,5 @@ - + Registers a custom resource importer in the editor. Use the class to parse any file and import it as a new resource type. diff --git a/doc/classes/EditorInspector.xml b/doc/classes/EditorInspector.xml index 0bbd55f0075..f88b9a92a98 100644 --- a/doc/classes/EditorInspector.xml +++ b/doc/classes/EditorInspector.xml @@ -1,5 +1,5 @@ - + A control used to edit properties of an object. diff --git a/doc/classes/EditorInspectorPlugin.xml b/doc/classes/EditorInspectorPlugin.xml index 4f6ef76c4c5..a127c2dd794 100644 --- a/doc/classes/EditorInspectorPlugin.xml +++ b/doc/classes/EditorInspectorPlugin.xml @@ -1,5 +1,5 @@ - + Plugin for adding custom property editors on the inspector. diff --git a/doc/classes/EditorInterface.xml b/doc/classes/EditorInterface.xml index 633f69b2f9a..1211578c63b 100644 --- a/doc/classes/EditorInterface.xml +++ b/doc/classes/EditorInterface.xml @@ -1,5 +1,5 @@ - + Godot editor's interface. diff --git a/doc/classes/EditorNode3DGizmo.xml b/doc/classes/EditorNode3DGizmo.xml index febff1bdea7..ce8cfdf97b4 100644 --- a/doc/classes/EditorNode3DGizmo.xml +++ b/doc/classes/EditorNode3DGizmo.xml @@ -1,5 +1,5 @@ - + Gizmo for editing [Node3D] objects. diff --git a/doc/classes/EditorNode3DGizmoPlugin.xml b/doc/classes/EditorNode3DGizmoPlugin.xml index 6a91e3559d7..f53559cd5fc 100644 --- a/doc/classes/EditorNode3DGizmoPlugin.xml +++ b/doc/classes/EditorNode3DGizmoPlugin.xml @@ -1,5 +1,5 @@ - + A class used by the editor to define Node3D gizmo types. diff --git a/doc/classes/EditorPaths.xml b/doc/classes/EditorPaths.xml index c355f06ad6c..2a6306a90c0 100644 --- a/doc/classes/EditorPaths.xml +++ b/doc/classes/EditorPaths.xml @@ -1,5 +1,5 @@ - + Editor-only singleton that returns paths to various OS-specific data folders and files. diff --git a/doc/classes/EditorPlugin.xml b/doc/classes/EditorPlugin.xml index f0ea1b12032..d215732a996 100644 --- a/doc/classes/EditorPlugin.xml +++ b/doc/classes/EditorPlugin.xml @@ -1,5 +1,5 @@ - + Used by the editor to extend its functionality. diff --git a/doc/classes/EditorProperty.xml b/doc/classes/EditorProperty.xml index e34d613e775..e304f2730b4 100644 --- a/doc/classes/EditorProperty.xml +++ b/doc/classes/EditorProperty.xml @@ -1,5 +1,5 @@ - + Custom control for editing properties that can be added to the [EditorInspector]. diff --git a/doc/classes/EditorResourceConversionPlugin.xml b/doc/classes/EditorResourceConversionPlugin.xml index c56c4adc5a6..0c8064ac1d9 100644 --- a/doc/classes/EditorResourceConversionPlugin.xml +++ b/doc/classes/EditorResourceConversionPlugin.xml @@ -1,5 +1,5 @@ - + Plugin for adding custom converters from one resource format to another in the editor resource picker context menu; for example, converting a [StandardMaterial3D] to a [ShaderMaterial]. diff --git a/doc/classes/EditorResourcePicker.xml b/doc/classes/EditorResourcePicker.xml index 4649e26edf0..fbbc68c6dc9 100644 --- a/doc/classes/EditorResourcePicker.xml +++ b/doc/classes/EditorResourcePicker.xml @@ -1,5 +1,5 @@ - + Godot editor's control for selecting [Resource] type properties. diff --git a/doc/classes/EditorResourcePreview.xml b/doc/classes/EditorResourcePreview.xml index a0c1a43fb2c..e4ff89f9931 100644 --- a/doc/classes/EditorResourcePreview.xml +++ b/doc/classes/EditorResourcePreview.xml @@ -1,5 +1,5 @@ - + A node used to generate previews of resources or files. diff --git a/doc/classes/EditorResourcePreviewGenerator.xml b/doc/classes/EditorResourcePreviewGenerator.xml index e94f658cdad..fe8f126c85c 100644 --- a/doc/classes/EditorResourcePreviewGenerator.xml +++ b/doc/classes/EditorResourcePreviewGenerator.xml @@ -1,5 +1,5 @@ - + Custom generator of previews. diff --git a/doc/classes/EditorResourceTooltipPlugin.xml b/doc/classes/EditorResourceTooltipPlugin.xml index 517d14492fb..38328156d63 100644 --- a/doc/classes/EditorResourceTooltipPlugin.xml +++ b/doc/classes/EditorResourceTooltipPlugin.xml @@ -1,5 +1,5 @@ - + A plugin that advanced tooltip for its handled resource type. diff --git a/doc/classes/EditorSceneFormatImporter.xml b/doc/classes/EditorSceneFormatImporter.xml index e89d4571934..a0b07f1d614 100644 --- a/doc/classes/EditorSceneFormatImporter.xml +++ b/doc/classes/EditorSceneFormatImporter.xml @@ -1,5 +1,5 @@ - + Imports scenes from third-parties' 3D files. diff --git a/doc/classes/EditorScenePostImport.xml b/doc/classes/EditorScenePostImport.xml index 55e1d5b17bf..7ea59f5afba 100644 --- a/doc/classes/EditorScenePostImport.xml +++ b/doc/classes/EditorScenePostImport.xml @@ -1,5 +1,5 @@ - + Post-processes scenes after import. diff --git a/doc/classes/EditorScenePostImportPlugin.xml b/doc/classes/EditorScenePostImportPlugin.xml index d901d7c54bf..309ba9b5a93 100644 --- a/doc/classes/EditorScenePostImportPlugin.xml +++ b/doc/classes/EditorScenePostImportPlugin.xml @@ -1,5 +1,5 @@ - + Plugin to control and modifying the process of importing a scene. diff --git a/doc/classes/EditorScript.xml b/doc/classes/EditorScript.xml index 3acd99a7230..4dccc41224c 100644 --- a/doc/classes/EditorScript.xml +++ b/doc/classes/EditorScript.xml @@ -1,5 +1,5 @@ - + Base script that can be used to add extension functions to the editor. diff --git a/doc/classes/EditorScriptPicker.xml b/doc/classes/EditorScriptPicker.xml index 31a1c503797..09100affafe 100644 --- a/doc/classes/EditorScriptPicker.xml +++ b/doc/classes/EditorScriptPicker.xml @@ -1,5 +1,5 @@ - + Godot editor's control for selecting the [code]script[/code] property of a [Node]. diff --git a/doc/classes/EditorSelection.xml b/doc/classes/EditorSelection.xml index 40dc1a24198..bb36c012a6a 100644 --- a/doc/classes/EditorSelection.xml +++ b/doc/classes/EditorSelection.xml @@ -1,5 +1,5 @@ - + Manages the SceneTree selection in the editor. diff --git a/doc/classes/EditorSettings.xml b/doc/classes/EditorSettings.xml index ea411e98432..842a56392a6 100644 --- a/doc/classes/EditorSettings.xml +++ b/doc/classes/EditorSettings.xml @@ -1,5 +1,5 @@ - + Object that holds the project-independent editor settings. diff --git a/doc/classes/EditorSpinSlider.xml b/doc/classes/EditorSpinSlider.xml index c3bb8762c83..cd3a5b54e96 100644 --- a/doc/classes/EditorSpinSlider.xml +++ b/doc/classes/EditorSpinSlider.xml @@ -1,5 +1,5 @@ - + Godot editor's control for editing numeric values. diff --git a/doc/classes/EditorSyntaxHighlighter.xml b/doc/classes/EditorSyntaxHighlighter.xml index 1e67dbd80df..78627a2f01b 100644 --- a/doc/classes/EditorSyntaxHighlighter.xml +++ b/doc/classes/EditorSyntaxHighlighter.xml @@ -1,5 +1,5 @@ - + Base class for [SyntaxHighlighter] used by the [ScriptEditor]. diff --git a/doc/classes/EditorToaster.xml b/doc/classes/EditorToaster.xml index 402e18d3107..7baa71db6a4 100644 --- a/doc/classes/EditorToaster.xml +++ b/doc/classes/EditorToaster.xml @@ -1,5 +1,5 @@ - + Manages toast notifications within the editor. diff --git a/doc/classes/EditorTranslationParserPlugin.xml b/doc/classes/EditorTranslationParserPlugin.xml index 088a047dac0..f24490387e9 100644 --- a/doc/classes/EditorTranslationParserPlugin.xml +++ b/doc/classes/EditorTranslationParserPlugin.xml @@ -1,5 +1,5 @@ - + Plugin for adding custom parsers to extract strings that are to be translated from custom files (.csv, .json etc.). diff --git a/doc/classes/EditorUndoRedoManager.xml b/doc/classes/EditorUndoRedoManager.xml index fe5398692bf..4410f03304c 100644 --- a/doc/classes/EditorUndoRedoManager.xml +++ b/doc/classes/EditorUndoRedoManager.xml @@ -1,5 +1,5 @@ - + Manages undo history of scenes opened in the editor. diff --git a/doc/classes/EditorVCSInterface.xml b/doc/classes/EditorVCSInterface.xml index bfd312a9eb2..900d99f9f53 100644 --- a/doc/classes/EditorVCSInterface.xml +++ b/doc/classes/EditorVCSInterface.xml @@ -1,5 +1,5 @@ - + Version Control System (VCS) interface, which reads and writes to the local VCS in use. diff --git a/doc/classes/EncodedObjectAsID.xml b/doc/classes/EncodedObjectAsID.xml index c930e6f579f..507454698c8 100644 --- a/doc/classes/EncodedObjectAsID.xml +++ b/doc/classes/EncodedObjectAsID.xml @@ -1,5 +1,5 @@ - + Holds a reference to an [Object]'s instance ID. diff --git a/doc/classes/Engine.xml b/doc/classes/Engine.xml index 48981a36c5d..450197e83ba 100644 --- a/doc/classes/Engine.xml +++ b/doc/classes/Engine.xml @@ -1,5 +1,5 @@ - + Provides access to engine properties. diff --git a/doc/classes/EngineDebugger.xml b/doc/classes/EngineDebugger.xml index 3540f098ba3..e0eb589c199 100644 --- a/doc/classes/EngineDebugger.xml +++ b/doc/classes/EngineDebugger.xml @@ -1,5 +1,5 @@ - + Exposes the internal debugger. diff --git a/doc/classes/EngineProfiler.xml b/doc/classes/EngineProfiler.xml index a974a3af6af..dbaabc22109 100644 --- a/doc/classes/EngineProfiler.xml +++ b/doc/classes/EngineProfiler.xml @@ -1,5 +1,5 @@ - + Base class for creating custom profilers. diff --git a/doc/classes/Environment.xml b/doc/classes/Environment.xml index 589c37b4185..ca9d1407e90 100644 --- a/doc/classes/Environment.xml +++ b/doc/classes/Environment.xml @@ -1,5 +1,5 @@ - + Resource for environment nodes (like [WorldEnvironment]) that define multiple rendering options. diff --git a/doc/classes/Expression.xml b/doc/classes/Expression.xml index f2adb7d5fc1..233bbd01c8c 100644 --- a/doc/classes/Expression.xml +++ b/doc/classes/Expression.xml @@ -1,5 +1,5 @@ - + A class that stores an expression you can execute. diff --git a/doc/classes/ExternalTexture.xml b/doc/classes/ExternalTexture.xml index 6f27b62f249..3facc356ef5 100644 --- a/doc/classes/ExternalTexture.xml +++ b/doc/classes/ExternalTexture.xml @@ -1,5 +1,5 @@ - + Texture which displays the content of an external buffer. diff --git a/doc/classes/FABRIK3D.xml b/doc/classes/FABRIK3D.xml index 2e4a15ad0f0..28d784a695a 100644 --- a/doc/classes/FABRIK3D.xml +++ b/doc/classes/FABRIK3D.xml @@ -1,5 +1,5 @@ - + Position based forward and backward reaching inverse kinematics solver. diff --git a/doc/classes/FileAccess.xml b/doc/classes/FileAccess.xml index fac9d086047..01f25880ba8 100644 --- a/doc/classes/FileAccess.xml +++ b/doc/classes/FileAccess.xml @@ -1,5 +1,5 @@ - + Provides methods for file reading and writing operations. diff --git a/doc/classes/FileDialog.xml b/doc/classes/FileDialog.xml index 0e885a01427..dc8ffac2ff1 100644 --- a/doc/classes/FileDialog.xml +++ b/doc/classes/FileDialog.xml @@ -1,5 +1,5 @@ - + A dialog for selecting files or directories in the filesystem. diff --git a/doc/classes/FileSystemDock.xml b/doc/classes/FileSystemDock.xml index 9ea387098c3..5603f47d7e6 100644 --- a/doc/classes/FileSystemDock.xml +++ b/doc/classes/FileSystemDock.xml @@ -1,5 +1,5 @@ - + Godot editor's dock for managing files in the project. diff --git a/doc/classes/FlowContainer.xml b/doc/classes/FlowContainer.xml index 2839143960b..9daa6735d5e 100644 --- a/doc/classes/FlowContainer.xml +++ b/doc/classes/FlowContainer.xml @@ -1,5 +1,5 @@ - + A container that arranges its child controls horizontally or vertically and wraps them around at the borders. diff --git a/doc/classes/FogMaterial.xml b/doc/classes/FogMaterial.xml index f256555d865..4bfd5b93599 100644 --- a/doc/classes/FogMaterial.xml +++ b/doc/classes/FogMaterial.xml @@ -1,5 +1,5 @@ - + A material that controls how volumetric fog is rendered, to be assigned to a [FogVolume]. diff --git a/doc/classes/FogVolume.xml b/doc/classes/FogVolume.xml index 74ccf569e74..05deffa8934 100644 --- a/doc/classes/FogVolume.xml +++ b/doc/classes/FogVolume.xml @@ -1,5 +1,5 @@ - + A region that contributes to the default volumetric fog from the world environment. diff --git a/doc/classes/FoldableContainer.xml b/doc/classes/FoldableContainer.xml index 6d77937ed82..10ac6c90815 100644 --- a/doc/classes/FoldableContainer.xml +++ b/doc/classes/FoldableContainer.xml @@ -1,5 +1,5 @@ - + A container that can be expanded/collapsed. diff --git a/doc/classes/FoldableGroup.xml b/doc/classes/FoldableGroup.xml index f803f0e838f..636277ecfad 100644 --- a/doc/classes/FoldableGroup.xml +++ b/doc/classes/FoldableGroup.xml @@ -1,5 +1,5 @@ - + A group of foldable containers that doesn't allow more than one container to be expanded at a time. diff --git a/doc/classes/Font.xml b/doc/classes/Font.xml index 5d43b901709..91cb967c622 100644 --- a/doc/classes/Font.xml +++ b/doc/classes/Font.xml @@ -1,5 +1,5 @@ - + Abstract base class for fonts and font variations. diff --git a/doc/classes/FontFile.xml b/doc/classes/FontFile.xml index d3f5b520b1a..f9d981e166a 100644 --- a/doc/classes/FontFile.xml +++ b/doc/classes/FontFile.xml @@ -1,5 +1,5 @@ - + Holds font source data and prerendered glyph cache, imported from a dynamic or a bitmap font. diff --git a/doc/classes/FontVariation.xml b/doc/classes/FontVariation.xml index 4945cc2e927..c7928e85f57 100644 --- a/doc/classes/FontVariation.xml +++ b/doc/classes/FontVariation.xml @@ -1,5 +1,5 @@ - + A variation of a font with additional settings. diff --git a/doc/classes/FramebufferCacheRD.xml b/doc/classes/FramebufferCacheRD.xml index 63d512eb118..8197e0656dc 100644 --- a/doc/classes/FramebufferCacheRD.xml +++ b/doc/classes/FramebufferCacheRD.xml @@ -1,5 +1,5 @@ - + Framebuffer cache manager for Rendering Device based renderers. diff --git a/doc/classes/GDExtension.xml b/doc/classes/GDExtension.xml index c78cd3a564b..87689eca513 100644 --- a/doc/classes/GDExtension.xml +++ b/doc/classes/GDExtension.xml @@ -1,5 +1,5 @@ - + A native library for GDExtension. diff --git a/doc/classes/GDExtensionManager.xml b/doc/classes/GDExtensionManager.xml index 93d79c86b4f..a2c60b1cd45 100644 --- a/doc/classes/GDExtensionManager.xml +++ b/doc/classes/GDExtensionManager.xml @@ -1,5 +1,5 @@ - + Provides access to GDExtension functionality. diff --git a/doc/classes/GPUParticles2D.xml b/doc/classes/GPUParticles2D.xml index e211584f6b4..d7ccd2e35fd 100644 --- a/doc/classes/GPUParticles2D.xml +++ b/doc/classes/GPUParticles2D.xml @@ -1,5 +1,5 @@ - + A 2D particle emitter. diff --git a/doc/classes/GPUParticles3D.xml b/doc/classes/GPUParticles3D.xml index 90fca02cb8f..24bce24a74b 100644 --- a/doc/classes/GPUParticles3D.xml +++ b/doc/classes/GPUParticles3D.xml @@ -1,5 +1,5 @@ - + A 3D particle emitter. diff --git a/doc/classes/GPUParticlesAttractor3D.xml b/doc/classes/GPUParticlesAttractor3D.xml index 0d219e4bc98..90a4fe7d91d 100644 --- a/doc/classes/GPUParticlesAttractor3D.xml +++ b/doc/classes/GPUParticlesAttractor3D.xml @@ -1,5 +1,5 @@ - + Abstract base class for 3D particle attractors. diff --git a/doc/classes/GPUParticlesAttractorBox3D.xml b/doc/classes/GPUParticlesAttractorBox3D.xml index 410d5044284..d3d26bb997d 100644 --- a/doc/classes/GPUParticlesAttractorBox3D.xml +++ b/doc/classes/GPUParticlesAttractorBox3D.xml @@ -1,5 +1,5 @@ - + A box-shaped attractor that influences particles from [GPUParticles3D] nodes. diff --git a/doc/classes/GPUParticlesAttractorSphere3D.xml b/doc/classes/GPUParticlesAttractorSphere3D.xml index 599d7e4e2ae..b289db59fe8 100644 --- a/doc/classes/GPUParticlesAttractorSphere3D.xml +++ b/doc/classes/GPUParticlesAttractorSphere3D.xml @@ -1,5 +1,5 @@ - + A spheroid-shaped attractor that influences particles from [GPUParticles3D] nodes. diff --git a/doc/classes/GPUParticlesAttractorVectorField3D.xml b/doc/classes/GPUParticlesAttractorVectorField3D.xml index 7cb5524a1b1..354d0b7d6b9 100644 --- a/doc/classes/GPUParticlesAttractorVectorField3D.xml +++ b/doc/classes/GPUParticlesAttractorVectorField3D.xml @@ -1,5 +1,5 @@ - + A box-shaped attractor with varying directions and strengths defined in it that influences particles from [GPUParticles3D] nodes. diff --git a/doc/classes/GPUParticlesCollision3D.xml b/doc/classes/GPUParticlesCollision3D.xml index 2d398edd5ed..f4e4a0f936a 100644 --- a/doc/classes/GPUParticlesCollision3D.xml +++ b/doc/classes/GPUParticlesCollision3D.xml @@ -1,5 +1,5 @@ - + Abstract base class for 3D particle collision shapes affecting [GPUParticles3D] nodes. diff --git a/doc/classes/GPUParticlesCollisionBox3D.xml b/doc/classes/GPUParticlesCollisionBox3D.xml index fc225e460f1..666dabb3927 100644 --- a/doc/classes/GPUParticlesCollisionBox3D.xml +++ b/doc/classes/GPUParticlesCollisionBox3D.xml @@ -1,5 +1,5 @@ - + A box-shaped 3D particle collision shape affecting [GPUParticles3D] nodes. diff --git a/doc/classes/GPUParticlesCollisionHeightField3D.xml b/doc/classes/GPUParticlesCollisionHeightField3D.xml index 04bfbdb6fd5..998fd517a1f 100644 --- a/doc/classes/GPUParticlesCollisionHeightField3D.xml +++ b/doc/classes/GPUParticlesCollisionHeightField3D.xml @@ -1,5 +1,5 @@ - + A real-time heightmap-shaped 3D particle collision shape affecting [GPUParticles3D] nodes. diff --git a/doc/classes/GPUParticlesCollisionSDF3D.xml b/doc/classes/GPUParticlesCollisionSDF3D.xml index 11978e07372..6cacaaf76f5 100644 --- a/doc/classes/GPUParticlesCollisionSDF3D.xml +++ b/doc/classes/GPUParticlesCollisionSDF3D.xml @@ -1,5 +1,5 @@ - + A baked signed distance field 3D particle collision shape affecting [GPUParticles3D] nodes. diff --git a/doc/classes/GPUParticlesCollisionSphere3D.xml b/doc/classes/GPUParticlesCollisionSphere3D.xml index fe2fe3d414b..fd75abb3343 100644 --- a/doc/classes/GPUParticlesCollisionSphere3D.xml +++ b/doc/classes/GPUParticlesCollisionSphere3D.xml @@ -1,5 +1,5 @@ - + A sphere-shaped 3D particle collision shape affecting [GPUParticles3D] nodes. diff --git a/doc/classes/Generic6DOFJoint3D.xml b/doc/classes/Generic6DOFJoint3D.xml index 2482defd0b2..0b6a805b17e 100644 --- a/doc/classes/Generic6DOFJoint3D.xml +++ b/doc/classes/Generic6DOFJoint3D.xml @@ -1,5 +1,5 @@ - + A physics joint that allows for complex movement and rotation between two 3D physics bodies. diff --git a/doc/classes/Geometry2D.xml b/doc/classes/Geometry2D.xml index 774bff6113d..c2d0fdc4232 100644 --- a/doc/classes/Geometry2D.xml +++ b/doc/classes/Geometry2D.xml @@ -1,5 +1,5 @@ - + Provides methods for some common 2D geometric operations. diff --git a/doc/classes/Geometry3D.xml b/doc/classes/Geometry3D.xml index 9f876829830..a17ceeb9289 100644 --- a/doc/classes/Geometry3D.xml +++ b/doc/classes/Geometry3D.xml @@ -1,5 +1,5 @@ - + Provides methods for some common 3D geometric operations. diff --git a/doc/classes/GeometryInstance3D.xml b/doc/classes/GeometryInstance3D.xml index 5ee8b55e697..abf87c8de46 100644 --- a/doc/classes/GeometryInstance3D.xml +++ b/doc/classes/GeometryInstance3D.xml @@ -1,5 +1,5 @@ - + Base node for geometry-based visual instances. diff --git a/doc/classes/GodotInstance.xml b/doc/classes/GodotInstance.xml index a071cb0adf9..f8778f51e3d 100644 --- a/doc/classes/GodotInstance.xml +++ b/doc/classes/GodotInstance.xml @@ -1,5 +1,5 @@ - + Provides access to an embedded Godot instance. diff --git a/doc/classes/Gradient.xml b/doc/classes/Gradient.xml index c5c74ebc0f5..dbe1a5f2824 100644 --- a/doc/classes/Gradient.xml +++ b/doc/classes/Gradient.xml @@ -1,5 +1,5 @@ - + A color transition. diff --git a/doc/classes/GradientTexture1D.xml b/doc/classes/GradientTexture1D.xml index 4e6b76c0a67..9583118b2a7 100644 --- a/doc/classes/GradientTexture1D.xml +++ b/doc/classes/GradientTexture1D.xml @@ -1,5 +1,5 @@ - + A 1D texture that uses colors obtained from a [Gradient]. diff --git a/doc/classes/GradientTexture2D.xml b/doc/classes/GradientTexture2D.xml index a4a6237049a..bb93310ef94 100644 --- a/doc/classes/GradientTexture2D.xml +++ b/doc/classes/GradientTexture2D.xml @@ -1,5 +1,5 @@ - + A 2D texture that creates a pattern with colors obtained from a [Gradient]. diff --git a/doc/classes/GraphEdit.xml b/doc/classes/GraphEdit.xml index c73b4e29037..60d2a4ec3e1 100644 --- a/doc/classes/GraphEdit.xml +++ b/doc/classes/GraphEdit.xml @@ -1,5 +1,5 @@ - + An editor for graph-like structures, using [GraphNode]s. diff --git a/doc/classes/GraphElement.xml b/doc/classes/GraphElement.xml index 7aac150bf98..41cb5afc118 100644 --- a/doc/classes/GraphElement.xml +++ b/doc/classes/GraphElement.xml @@ -1,5 +1,5 @@ - + A container that represents a basic element that can be placed inside a [GraphEdit] control. diff --git a/doc/classes/GraphFrame.xml b/doc/classes/GraphFrame.xml index ce8d3e9703e..53bf9cc5657 100644 --- a/doc/classes/GraphFrame.xml +++ b/doc/classes/GraphFrame.xml @@ -1,5 +1,5 @@ - + GraphFrame is a special [GraphElement] that can be used to organize other [GraphElement]s inside a [GraphEdit]. diff --git a/doc/classes/GraphNode.xml b/doc/classes/GraphNode.xml index 6ea454f3d5d..0df1887981d 100644 --- a/doc/classes/GraphNode.xml +++ b/doc/classes/GraphNode.xml @@ -1,5 +1,5 @@ - + A container with connection ports, representing a node in a [GraphEdit]. diff --git a/doc/classes/GridContainer.xml b/doc/classes/GridContainer.xml index 76f789a0588..31707779dee 100644 --- a/doc/classes/GridContainer.xml +++ b/doc/classes/GridContainer.xml @@ -1,5 +1,5 @@ - + A container that arranges its child controls in a grid layout. diff --git a/doc/classes/GrooveJoint2D.xml b/doc/classes/GrooveJoint2D.xml index a9c4f19c651..3e9f6a993e0 100644 --- a/doc/classes/GrooveJoint2D.xml +++ b/doc/classes/GrooveJoint2D.xml @@ -1,5 +1,5 @@ - + A physics joint that restricts the movement of two 2D physics bodies to a fixed axis. diff --git a/doc/classes/HBoxContainer.xml b/doc/classes/HBoxContainer.xml index f531f3f9107..a9d9b03a315 100644 --- a/doc/classes/HBoxContainer.xml +++ b/doc/classes/HBoxContainer.xml @@ -1,5 +1,5 @@ - + A container that arranges its child controls horizontally. diff --git a/doc/classes/HFlowContainer.xml b/doc/classes/HFlowContainer.xml index 36a87376cad..75fec3d0479 100644 --- a/doc/classes/HFlowContainer.xml +++ b/doc/classes/HFlowContainer.xml @@ -1,5 +1,5 @@ - + A container that arranges its child controls horizontally and wraps them around at the borders. diff --git a/doc/classes/HMACContext.xml b/doc/classes/HMACContext.xml index a5d3cea5065..fec7aa19594 100644 --- a/doc/classes/HMACContext.xml +++ b/doc/classes/HMACContext.xml @@ -1,5 +1,5 @@ - + Used to create an HMAC for a message using a key. diff --git a/doc/classes/HScrollBar.xml b/doc/classes/HScrollBar.xml index a07f00f8c96..7196053a98f 100644 --- a/doc/classes/HScrollBar.xml +++ b/doc/classes/HScrollBar.xml @@ -1,5 +1,5 @@ - + A horizontal scrollbar that goes from left (min) to right (max). diff --git a/doc/classes/HSeparator.xml b/doc/classes/HSeparator.xml index ffba571f904..546ae240fc9 100644 --- a/doc/classes/HSeparator.xml +++ b/doc/classes/HSeparator.xml @@ -1,5 +1,5 @@ - + A horizontal line used for separating other controls. diff --git a/doc/classes/HSlider.xml b/doc/classes/HSlider.xml index 40ec408f9ba..1a7b55857ee 100644 --- a/doc/classes/HSlider.xml +++ b/doc/classes/HSlider.xml @@ -1,5 +1,5 @@ - + A horizontal slider that goes from left (min) to right (max). diff --git a/doc/classes/HSplitContainer.xml b/doc/classes/HSplitContainer.xml index 1d8dbcb17cf..4dadeee2582 100644 --- a/doc/classes/HSplitContainer.xml +++ b/doc/classes/HSplitContainer.xml @@ -1,5 +1,5 @@ - + A container that splits two child controls horizontally and provides a grabber for adjusting the split ratio. diff --git a/doc/classes/HTTPClient.xml b/doc/classes/HTTPClient.xml index 08dc5fef5b7..e7f04cec666 100644 --- a/doc/classes/HTTPClient.xml +++ b/doc/classes/HTTPClient.xml @@ -1,5 +1,5 @@ - + Low-level hyper-text transfer protocol client. diff --git a/doc/classes/HTTPRequest.xml b/doc/classes/HTTPRequest.xml index ff87a3eb57d..a0208da6688 100644 --- a/doc/classes/HTTPRequest.xml +++ b/doc/classes/HTTPRequest.xml @@ -1,5 +1,5 @@ - + A node with the ability to send HTTP(S) requests. diff --git a/doc/classes/HashingContext.xml b/doc/classes/HashingContext.xml index b3be3494112..f1f2dea8204 100644 --- a/doc/classes/HashingContext.xml +++ b/doc/classes/HashingContext.xml @@ -1,5 +1,5 @@ - + Provides functionality for computing cryptographic hashes chunk by chunk. diff --git a/doc/classes/HeightMapShape3D.xml b/doc/classes/HeightMapShape3D.xml index 77c857f6acb..1040b06fed5 100644 --- a/doc/classes/HeightMapShape3D.xml +++ b/doc/classes/HeightMapShape3D.xml @@ -1,5 +1,5 @@ - + A 3D heightmap shape used for physics collision. diff --git a/doc/classes/HingeJoint3D.xml b/doc/classes/HingeJoint3D.xml index 72594713e0a..4de1973a91f 100644 --- a/doc/classes/HingeJoint3D.xml +++ b/doc/classes/HingeJoint3D.xml @@ -1,5 +1,5 @@ - + A physics joint that restricts the rotation of a 3D physics body around an axis relative to another physics body. diff --git a/doc/classes/IKModifier3D.xml b/doc/classes/IKModifier3D.xml index cf698efa949..dfc58690d5b 100644 --- a/doc/classes/IKModifier3D.xml +++ b/doc/classes/IKModifier3D.xml @@ -1,5 +1,5 @@ - + A node for inverse kinematics which may modify more than one bone. diff --git a/doc/classes/IP.xml b/doc/classes/IP.xml index 00f6e3af246..14714b72d66 100644 --- a/doc/classes/IP.xml +++ b/doc/classes/IP.xml @@ -1,5 +1,5 @@ - + Internet protocol (IP) support functions such as DNS resolution. diff --git a/doc/classes/Image.xml b/doc/classes/Image.xml index 0eeef7de251..9019e38530f 100644 --- a/doc/classes/Image.xml +++ b/doc/classes/Image.xml @@ -1,5 +1,5 @@ - + Image datatype. diff --git a/doc/classes/ImageFormatLoader.xml b/doc/classes/ImageFormatLoader.xml index a2276675bb5..07484224340 100644 --- a/doc/classes/ImageFormatLoader.xml +++ b/doc/classes/ImageFormatLoader.xml @@ -1,5 +1,5 @@ - + Base class to add support for specific image formats. diff --git a/doc/classes/ImageFormatLoaderExtension.xml b/doc/classes/ImageFormatLoaderExtension.xml index a7556695184..1d1d88d49a6 100644 --- a/doc/classes/ImageFormatLoaderExtension.xml +++ b/doc/classes/ImageFormatLoaderExtension.xml @@ -1,5 +1,5 @@ - + Base class for creating [ImageFormatLoader] extensions (adding support for extra image formats). diff --git a/doc/classes/ImageTexture.xml b/doc/classes/ImageTexture.xml index 9d55049497a..842dcb17ace 100644 --- a/doc/classes/ImageTexture.xml +++ b/doc/classes/ImageTexture.xml @@ -1,5 +1,5 @@ - + A [Texture2D] based on an [Image]. diff --git a/doc/classes/ImageTexture3D.xml b/doc/classes/ImageTexture3D.xml index 3d2aec1c7fd..655dc014b93 100644 --- a/doc/classes/ImageTexture3D.xml +++ b/doc/classes/ImageTexture3D.xml @@ -1,5 +1,5 @@ - + Texture with 3 dimensions. diff --git a/doc/classes/ImageTextureLayered.xml b/doc/classes/ImageTextureLayered.xml index 5ced4bf791c..ae31d4246f0 100644 --- a/doc/classes/ImageTextureLayered.xml +++ b/doc/classes/ImageTextureLayered.xml @@ -1,5 +1,5 @@ - + Base class for texture types which contain the data of multiple [ImageTexture]s. Each image is of the same size and format. diff --git a/doc/classes/ImmediateMesh.xml b/doc/classes/ImmediateMesh.xml index d5228b54e6c..3bf008e6f4f 100644 --- a/doc/classes/ImmediateMesh.xml +++ b/doc/classes/ImmediateMesh.xml @@ -1,5 +1,5 @@ - + Mesh optimized for creating geometry manually. diff --git a/doc/classes/ImporterMesh.xml b/doc/classes/ImporterMesh.xml index c9f5c010ba8..da7ca3553c1 100644 --- a/doc/classes/ImporterMesh.xml +++ b/doc/classes/ImporterMesh.xml @@ -1,5 +1,5 @@ - + A [Resource] that contains vertex array-based geometry during the import process. diff --git a/doc/classes/ImporterMeshInstance3D.xml b/doc/classes/ImporterMeshInstance3D.xml index 9ace4540365..510c854d9f3 100644 --- a/doc/classes/ImporterMeshInstance3D.xml +++ b/doc/classes/ImporterMeshInstance3D.xml @@ -1,5 +1,5 @@ - + diff --git a/doc/classes/Input.xml b/doc/classes/Input.xml index ee7d3aa6408..e26640a44ce 100644 --- a/doc/classes/Input.xml +++ b/doc/classes/Input.xml @@ -1,5 +1,5 @@ - + A singleton for handling inputs. diff --git a/doc/classes/InputEvent.xml b/doc/classes/InputEvent.xml index 584b31f8fab..13057b8197f 100644 --- a/doc/classes/InputEvent.xml +++ b/doc/classes/InputEvent.xml @@ -1,5 +1,5 @@ - + Abstract base class for input events. diff --git a/doc/classes/InputEventAction.xml b/doc/classes/InputEventAction.xml index 85cb85bd1c8..786825207e9 100644 --- a/doc/classes/InputEventAction.xml +++ b/doc/classes/InputEventAction.xml @@ -1,5 +1,5 @@ - + An input event type for actions. diff --git a/doc/classes/InputEventFromWindow.xml b/doc/classes/InputEventFromWindow.xml index df2a7c4fc28..91da8aaa238 100644 --- a/doc/classes/InputEventFromWindow.xml +++ b/doc/classes/InputEventFromWindow.xml @@ -1,5 +1,5 @@ - + Abstract base class for [Viewport]-based input events. diff --git a/doc/classes/InputEventGesture.xml b/doc/classes/InputEventGesture.xml index 247db8ac004..ea61a894425 100644 --- a/doc/classes/InputEventGesture.xml +++ b/doc/classes/InputEventGesture.xml @@ -1,5 +1,5 @@ - + Abstract base class for touch gestures. diff --git a/doc/classes/InputEventJoypadButton.xml b/doc/classes/InputEventJoypadButton.xml index 3d1842fa77c..385b1b6b7db 100644 --- a/doc/classes/InputEventJoypadButton.xml +++ b/doc/classes/InputEventJoypadButton.xml @@ -1,5 +1,5 @@ - + Represents a gamepad button being pressed or released. diff --git a/doc/classes/InputEventJoypadMotion.xml b/doc/classes/InputEventJoypadMotion.xml index 2107c4ba686..c6ea917291f 100644 --- a/doc/classes/InputEventJoypadMotion.xml +++ b/doc/classes/InputEventJoypadMotion.xml @@ -1,5 +1,5 @@ - + Represents axis motions (such as joystick or analog triggers) from a gamepad. diff --git a/doc/classes/InputEventKey.xml b/doc/classes/InputEventKey.xml index 7c70e5c7ab5..dbda8ca090b 100644 --- a/doc/classes/InputEventKey.xml +++ b/doc/classes/InputEventKey.xml @@ -1,5 +1,5 @@ - + Represents a key on a keyboard being pressed or released. diff --git a/doc/classes/InputEventMIDI.xml b/doc/classes/InputEventMIDI.xml index 9c05bcb1838..f0e2e0b0919 100644 --- a/doc/classes/InputEventMIDI.xml +++ b/doc/classes/InputEventMIDI.xml @@ -1,5 +1,5 @@ - + Represents a MIDI message from a MIDI device, such as a musical keyboard. diff --git a/doc/classes/InputEventMagnifyGesture.xml b/doc/classes/InputEventMagnifyGesture.xml index 627344a1369..b199e13e8eb 100644 --- a/doc/classes/InputEventMagnifyGesture.xml +++ b/doc/classes/InputEventMagnifyGesture.xml @@ -1,5 +1,5 @@ - + Represents a magnifying touch gesture. diff --git a/doc/classes/InputEventMouse.xml b/doc/classes/InputEventMouse.xml index 276be683b97..d5a1627f309 100644 --- a/doc/classes/InputEventMouse.xml +++ b/doc/classes/InputEventMouse.xml @@ -1,5 +1,5 @@ - + Base input event type for mouse events. diff --git a/doc/classes/InputEventMouseButton.xml b/doc/classes/InputEventMouseButton.xml index 9bcd1fc7bf6..a6cc7129c62 100644 --- a/doc/classes/InputEventMouseButton.xml +++ b/doc/classes/InputEventMouseButton.xml @@ -1,5 +1,5 @@ - + Represents a mouse button being pressed or released. diff --git a/doc/classes/InputEventMouseMotion.xml b/doc/classes/InputEventMouseMotion.xml index 561038f702c..cec86e822e7 100644 --- a/doc/classes/InputEventMouseMotion.xml +++ b/doc/classes/InputEventMouseMotion.xml @@ -1,5 +1,5 @@ - + Represents a mouse or a pen movement. diff --git a/doc/classes/InputEventPanGesture.xml b/doc/classes/InputEventPanGesture.xml index 512b2cce512..157a0a9e583 100644 --- a/doc/classes/InputEventPanGesture.xml +++ b/doc/classes/InputEventPanGesture.xml @@ -1,5 +1,5 @@ - + Represents a panning touch gesture. diff --git a/doc/classes/InputEventScreenDrag.xml b/doc/classes/InputEventScreenDrag.xml index e77040204c2..b3b3ca67021 100644 --- a/doc/classes/InputEventScreenDrag.xml +++ b/doc/classes/InputEventScreenDrag.xml @@ -1,5 +1,5 @@ - + Represents a screen drag event. diff --git a/doc/classes/InputEventScreenTouch.xml b/doc/classes/InputEventScreenTouch.xml index a42b122e3be..76a2d99f94f 100644 --- a/doc/classes/InputEventScreenTouch.xml +++ b/doc/classes/InputEventScreenTouch.xml @@ -1,5 +1,5 @@ - + Represents a screen touch event. diff --git a/doc/classes/InputEventShortcut.xml b/doc/classes/InputEventShortcut.xml index 414dd7e8ce8..467efbd3a3f 100644 --- a/doc/classes/InputEventShortcut.xml +++ b/doc/classes/InputEventShortcut.xml @@ -1,5 +1,5 @@ - + Represents a triggered keyboard [Shortcut]. diff --git a/doc/classes/InputEventWithModifiers.xml b/doc/classes/InputEventWithModifiers.xml index e348948b1fe..9184c69e76c 100644 --- a/doc/classes/InputEventWithModifiers.xml +++ b/doc/classes/InputEventWithModifiers.xml @@ -1,5 +1,5 @@ - + Abstract base class for input events affected by modifier keys like [kbd]Shift[/kbd] and [kbd]Alt[/kbd]. diff --git a/doc/classes/InputMap.xml b/doc/classes/InputMap.xml index 34c773a257d..bff94ca0103 100644 --- a/doc/classes/InputMap.xml +++ b/doc/classes/InputMap.xml @@ -1,5 +1,5 @@ - + A singleton that manages all [InputEventAction]s. diff --git a/doc/classes/InstancePlaceholder.xml b/doc/classes/InstancePlaceholder.xml index b390d5d9bd7..c3765e02b27 100644 --- a/doc/classes/InstancePlaceholder.xml +++ b/doc/classes/InstancePlaceholder.xml @@ -1,5 +1,5 @@ - + Placeholder for the root [Node] of a [PackedScene]. diff --git a/doc/classes/IntervalTweener.xml b/doc/classes/IntervalTweener.xml index 13f48c65d58..e323af0eb14 100644 --- a/doc/classes/IntervalTweener.xml +++ b/doc/classes/IntervalTweener.xml @@ -1,5 +1,5 @@ - + Creates an idle interval in a [Tween] animation. diff --git a/doc/classes/ItemList.xml b/doc/classes/ItemList.xml index f008e49d389..99e682a1b35 100644 --- a/doc/classes/ItemList.xml +++ b/doc/classes/ItemList.xml @@ -1,5 +1,5 @@ - + A vertical list of selectable items with one or multiple columns. diff --git a/doc/classes/IterateIK3D.xml b/doc/classes/IterateIK3D.xml index 046701d1ca9..e4c19ee275f 100644 --- a/doc/classes/IterateIK3D.xml +++ b/doc/classes/IterateIK3D.xml @@ -1,5 +1,5 @@ - + A [SkeletonModifier3D] to approach the goal by repeating small rotations. diff --git a/doc/classes/JNISingleton.xml b/doc/classes/JNISingleton.xml index 50271ac1fc9..bb777f29853 100644 --- a/doc/classes/JNISingleton.xml +++ b/doc/classes/JNISingleton.xml @@ -1,5 +1,5 @@ - + Singleton that connects the engine with Android plugins to interface with native Android code. diff --git a/doc/classes/JSON.xml b/doc/classes/JSON.xml index b13b5b45bfb..eae3c54f1db 100644 --- a/doc/classes/JSON.xml +++ b/doc/classes/JSON.xml @@ -1,5 +1,5 @@ - + Helper class for creating and parsing JSON data. diff --git a/doc/classes/JSONRPC.xml b/doc/classes/JSONRPC.xml index d4efe213edb..0c224b5b92f 100644 --- a/doc/classes/JSONRPC.xml +++ b/doc/classes/JSONRPC.xml @@ -1,5 +1,5 @@ - + A helper to handle dictionaries which look like JSONRPC documents. diff --git a/doc/classes/JacobianIK3D.xml b/doc/classes/JacobianIK3D.xml index d78cc3a5974..0544a516407 100644 --- a/doc/classes/JacobianIK3D.xml +++ b/doc/classes/JacobianIK3D.xml @@ -1,5 +1,5 @@ - + Jacobian transpose based inverse kinematics solver. diff --git a/doc/classes/JavaClass.xml b/doc/classes/JavaClass.xml index 0fea241a0e8..d885218e2fd 100644 --- a/doc/classes/JavaClass.xml +++ b/doc/classes/JavaClass.xml @@ -1,5 +1,5 @@ - + Represents a class from the Java Native Interface. diff --git a/doc/classes/JavaClassWrapper.xml b/doc/classes/JavaClassWrapper.xml index a988cccdbd8..c6f76700b32 100644 --- a/doc/classes/JavaClassWrapper.xml +++ b/doc/classes/JavaClassWrapper.xml @@ -1,5 +1,5 @@ - + Provides access to the Java Native Interface. diff --git a/doc/classes/JavaObject.xml b/doc/classes/JavaObject.xml index aa090a809b9..a4036b42724 100644 --- a/doc/classes/JavaObject.xml +++ b/doc/classes/JavaObject.xml @@ -1,5 +1,5 @@ - + Represents an object from the Java Native Interface. diff --git a/doc/classes/JavaScriptBridge.xml b/doc/classes/JavaScriptBridge.xml index 0c39c0f5960..d6cc6e44c8a 100644 --- a/doc/classes/JavaScriptBridge.xml +++ b/doc/classes/JavaScriptBridge.xml @@ -1,5 +1,5 @@ - + Singleton that connects the engine with the browser's JavaScript context in Web export. diff --git a/doc/classes/JavaScriptObject.xml b/doc/classes/JavaScriptObject.xml index 24d0008c05b..7b4778b2c0e 100644 --- a/doc/classes/JavaScriptObject.xml +++ b/doc/classes/JavaScriptObject.xml @@ -1,5 +1,5 @@ - + A wrapper class for web native JavaScript objects. diff --git a/doc/classes/Joint2D.xml b/doc/classes/Joint2D.xml index 0099c76d08d..d1922ce707f 100644 --- a/doc/classes/Joint2D.xml +++ b/doc/classes/Joint2D.xml @@ -1,5 +1,5 @@ - + Abstract base class for all 2D physics joints. diff --git a/doc/classes/Joint3D.xml b/doc/classes/Joint3D.xml index 0e56c69f1fe..1078d348626 100644 --- a/doc/classes/Joint3D.xml +++ b/doc/classes/Joint3D.xml @@ -1,5 +1,5 @@ - + Abstract base class for all 3D physics joints. diff --git a/doc/classes/JointLimitation3D.xml b/doc/classes/JointLimitation3D.xml index 98a08ac60f7..48a103b807a 100644 --- a/doc/classes/JointLimitation3D.xml +++ b/doc/classes/JointLimitation3D.xml @@ -1,5 +1,5 @@ - + A base class of the limitation that interacts with [ChainIK3D]. diff --git a/doc/classes/JointLimitationCone3D.xml b/doc/classes/JointLimitationCone3D.xml index 85ae1eb5fcd..74a7c07a603 100644 --- a/doc/classes/JointLimitationCone3D.xml +++ b/doc/classes/JointLimitationCone3D.xml @@ -1,5 +1,5 @@ - + A cone shape limitation that interacts with [ChainIK3D]. diff --git a/doc/classes/KinematicCollision2D.xml b/doc/classes/KinematicCollision2D.xml index ab805bf4b3d..4b526d82b70 100644 --- a/doc/classes/KinematicCollision2D.xml +++ b/doc/classes/KinematicCollision2D.xml @@ -1,5 +1,5 @@ - + Holds collision data from the movement of a [PhysicsBody2D]. diff --git a/doc/classes/KinematicCollision3D.xml b/doc/classes/KinematicCollision3D.xml index 2e319676c9d..6fffe1a83ef 100644 --- a/doc/classes/KinematicCollision3D.xml +++ b/doc/classes/KinematicCollision3D.xml @@ -1,5 +1,5 @@ - + Holds collision data from the movement of a [PhysicsBody3D]. diff --git a/doc/classes/Label.xml b/doc/classes/Label.xml index bf79b5175e0..c276161863f 100644 --- a/doc/classes/Label.xml +++ b/doc/classes/Label.xml @@ -1,5 +1,5 @@ - + A control for displaying plain text. diff --git a/doc/classes/Label3D.xml b/doc/classes/Label3D.xml index d30f1fdea51..96a0fa59b9a 100644 --- a/doc/classes/Label3D.xml +++ b/doc/classes/Label3D.xml @@ -1,5 +1,5 @@ - + A node for displaying plain text in 3D space. diff --git a/doc/classes/LabelSettings.xml b/doc/classes/LabelSettings.xml index 853c38bf8c4..a1fbc0b4fa4 100644 --- a/doc/classes/LabelSettings.xml +++ b/doc/classes/LabelSettings.xml @@ -1,5 +1,5 @@ - + Provides common settings to customize the text in a [Label]. diff --git a/doc/classes/Light2D.xml b/doc/classes/Light2D.xml index e9d4c7358f4..852de15bec6 100644 --- a/doc/classes/Light2D.xml +++ b/doc/classes/Light2D.xml @@ -1,5 +1,5 @@ - + Casts light in a 2D environment. diff --git a/doc/classes/Light3D.xml b/doc/classes/Light3D.xml index 648bb9c215f..22fa968f6e4 100644 --- a/doc/classes/Light3D.xml +++ b/doc/classes/Light3D.xml @@ -1,5 +1,5 @@ - + Provides a base class for different kinds of light nodes. diff --git a/doc/classes/LightOccluder2D.xml b/doc/classes/LightOccluder2D.xml index e42ecd1c497..2d8ad2dbf96 100644 --- a/doc/classes/LightOccluder2D.xml +++ b/doc/classes/LightOccluder2D.xml @@ -1,5 +1,5 @@ - + Occludes light cast by a Light2D, casting shadows. diff --git a/doc/classes/LightmapGI.xml b/doc/classes/LightmapGI.xml index 16604aabf08..0f45f80b0df 100644 --- a/doc/classes/LightmapGI.xml +++ b/doc/classes/LightmapGI.xml @@ -1,5 +1,5 @@ - + Computes and stores baked lightmaps for fast global illumination. diff --git a/doc/classes/LightmapGIData.xml b/doc/classes/LightmapGIData.xml index e7454f4ea81..5086814c417 100644 --- a/doc/classes/LightmapGIData.xml +++ b/doc/classes/LightmapGIData.xml @@ -1,5 +1,5 @@ - + Contains baked lightmap and dynamic object probe data for [LightmapGI]. diff --git a/doc/classes/LightmapProbe.xml b/doc/classes/LightmapProbe.xml index f1b998789d0..f2cebf24130 100644 --- a/doc/classes/LightmapProbe.xml +++ b/doc/classes/LightmapProbe.xml @@ -1,5 +1,5 @@ - + Represents a single manually placed probe for dynamic object lighting with [LightmapGI]. diff --git a/doc/classes/Lightmapper.xml b/doc/classes/Lightmapper.xml index 1febd398293..983337af166 100644 --- a/doc/classes/Lightmapper.xml +++ b/doc/classes/Lightmapper.xml @@ -1,5 +1,5 @@ - + Abstract class extended by lightmappers, for use in [LightmapGI]. diff --git a/doc/classes/LightmapperRD.xml b/doc/classes/LightmapperRD.xml index da3baac0619..e201a27d3d0 100644 --- a/doc/classes/LightmapperRD.xml +++ b/doc/classes/LightmapperRD.xml @@ -1,5 +1,5 @@ - + The built-in GPU-based lightmapper for use with [LightmapGI]. diff --git a/doc/classes/LimitAngularVelocityModifier3D.xml b/doc/classes/LimitAngularVelocityModifier3D.xml index 5ef6e05a62b..eea19d5c83b 100644 --- a/doc/classes/LimitAngularVelocityModifier3D.xml +++ b/doc/classes/LimitAngularVelocityModifier3D.xml @@ -1,5 +1,5 @@ - + Limit bone rotation angular velocity. diff --git a/doc/classes/Line2D.xml b/doc/classes/Line2D.xml index 9b52c77a057..473aa0e3ac2 100644 --- a/doc/classes/Line2D.xml +++ b/doc/classes/Line2D.xml @@ -1,5 +1,5 @@ - + A 2D polyline that can optionally be textured. diff --git a/doc/classes/LineEdit.xml b/doc/classes/LineEdit.xml index 3c38a66236c..27ea91ca3bc 100644 --- a/doc/classes/LineEdit.xml +++ b/doc/classes/LineEdit.xml @@ -1,5 +1,5 @@ - + An input field for single-line text. diff --git a/doc/classes/LinkButton.xml b/doc/classes/LinkButton.xml index 28b13a7d9ba..a119aec547b 100644 --- a/doc/classes/LinkButton.xml +++ b/doc/classes/LinkButton.xml @@ -1,5 +1,5 @@ - + A button that represents a link. diff --git a/doc/classes/Logger.xml b/doc/classes/Logger.xml index 3fff3530b56..db32f167307 100644 --- a/doc/classes/Logger.xml +++ b/doc/classes/Logger.xml @@ -1,5 +1,5 @@ - + Custom logger to receive messages from the internal error/warning stream. diff --git a/doc/classes/LookAtModifier3D.xml b/doc/classes/LookAtModifier3D.xml index 1d458ef2363..cedd90a1c0b 100644 --- a/doc/classes/LookAtModifier3D.xml +++ b/doc/classes/LookAtModifier3D.xml @@ -1,5 +1,5 @@ - + The [LookAtModifier3D] rotates a bone to look at a target. diff --git a/doc/classes/MainLoop.xml b/doc/classes/MainLoop.xml index 0bf53560b74..43203abd0aa 100644 --- a/doc/classes/MainLoop.xml +++ b/doc/classes/MainLoop.xml @@ -1,5 +1,5 @@ - + Abstract base class for the game's main loop. diff --git a/doc/classes/MarginContainer.xml b/doc/classes/MarginContainer.xml index e3dd64648f7..143f1b13218 100644 --- a/doc/classes/MarginContainer.xml +++ b/doc/classes/MarginContainer.xml @@ -1,5 +1,5 @@ - + A container that keeps a margin around its child controls. diff --git a/doc/classes/Marker2D.xml b/doc/classes/Marker2D.xml index d6239484f57..9c10709f427 100644 --- a/doc/classes/Marker2D.xml +++ b/doc/classes/Marker2D.xml @@ -1,5 +1,5 @@ - + Generic 2D position hint for editing. diff --git a/doc/classes/Marker3D.xml b/doc/classes/Marker3D.xml index 1728f7e5660..c14735da771 100644 --- a/doc/classes/Marker3D.xml +++ b/doc/classes/Marker3D.xml @@ -1,5 +1,5 @@ - + Generic 3D position hint for editing. diff --git a/doc/classes/Marshalls.xml b/doc/classes/Marshalls.xml index 5dc77fe1deb..0f9dea400c3 100644 --- a/doc/classes/Marshalls.xml +++ b/doc/classes/Marshalls.xml @@ -1,5 +1,5 @@ - + Data transformation (marshaling) and encoding helpers. diff --git a/doc/classes/Material.xml b/doc/classes/Material.xml index 1dab52aa276..e03682acb91 100644 --- a/doc/classes/Material.xml +++ b/doc/classes/Material.xml @@ -1,5 +1,5 @@ - + Virtual base class for applying visual properties to an object, such as color and roughness. diff --git a/doc/classes/MenuBar.xml b/doc/classes/MenuBar.xml index 044cbd445ac..f3362def109 100644 --- a/doc/classes/MenuBar.xml +++ b/doc/classes/MenuBar.xml @@ -1,5 +1,5 @@ - + A horizontal menu bar that creates a menu for each [PopupMenu] child. diff --git a/doc/classes/MenuButton.xml b/doc/classes/MenuButton.xml index 0c7be0e1028..8cb160ee9e6 100644 --- a/doc/classes/MenuButton.xml +++ b/doc/classes/MenuButton.xml @@ -1,5 +1,5 @@ - + A button that brings up a [PopupMenu] when clicked. diff --git a/doc/classes/Mesh.xml b/doc/classes/Mesh.xml index 048f971017f..bb9fbef5424 100644 --- a/doc/classes/Mesh.xml +++ b/doc/classes/Mesh.xml @@ -1,5 +1,5 @@ - + A [Resource] that contains vertex array-based geometry. diff --git a/doc/classes/MeshConvexDecompositionSettings.xml b/doc/classes/MeshConvexDecompositionSettings.xml index 38f1ff3f9bd..780b6834ae0 100644 --- a/doc/classes/MeshConvexDecompositionSettings.xml +++ b/doc/classes/MeshConvexDecompositionSettings.xml @@ -1,5 +1,5 @@ - + Parameters to be used with a [Mesh] convex decomposition operation. diff --git a/doc/classes/MeshDataTool.xml b/doc/classes/MeshDataTool.xml index 83c88eaee5f..91f944670f0 100644 --- a/doc/classes/MeshDataTool.xml +++ b/doc/classes/MeshDataTool.xml @@ -1,5 +1,5 @@ - + Helper tool to access and edit [Mesh] data. diff --git a/doc/classes/MeshInstance2D.xml b/doc/classes/MeshInstance2D.xml index 100385d8aba..f6a210699b3 100644 --- a/doc/classes/MeshInstance2D.xml +++ b/doc/classes/MeshInstance2D.xml @@ -1,5 +1,5 @@ - + Node used for displaying a [Mesh] in 2D. diff --git a/doc/classes/MeshInstance3D.xml b/doc/classes/MeshInstance3D.xml index edf6f0dd16c..fb063f55802 100644 --- a/doc/classes/MeshInstance3D.xml +++ b/doc/classes/MeshInstance3D.xml @@ -1,5 +1,5 @@ - + Node that instances meshes into a scenario. diff --git a/doc/classes/MeshLibrary.xml b/doc/classes/MeshLibrary.xml index 05ec007c500..0f7de0eb6a1 100644 --- a/doc/classes/MeshLibrary.xml +++ b/doc/classes/MeshLibrary.xml @@ -1,5 +1,5 @@ - + Library of meshes. diff --git a/doc/classes/MeshTexture.xml b/doc/classes/MeshTexture.xml index bea99a4d5c5..55db0f4b88b 100644 --- a/doc/classes/MeshTexture.xml +++ b/doc/classes/MeshTexture.xml @@ -1,5 +1,5 @@ - + Simple texture that uses a mesh to draw itself. diff --git a/doc/classes/MethodTweener.xml b/doc/classes/MethodTweener.xml index 6f606763a1c..97e16f785fb 100644 --- a/doc/classes/MethodTweener.xml +++ b/doc/classes/MethodTweener.xml @@ -1,5 +1,5 @@ - + Interpolates an abstract value and supplies it to a method called over time. diff --git a/doc/classes/MissingNode.xml b/doc/classes/MissingNode.xml index d6d1ac0f01a..af1623a8973 100644 --- a/doc/classes/MissingNode.xml +++ b/doc/classes/MissingNode.xml @@ -1,5 +1,5 @@ - + An internal editor class intended for keeping the data of unrecognized nodes. diff --git a/doc/classes/MissingResource.xml b/doc/classes/MissingResource.xml index 442b0abd5ea..caca3bacd52 100644 --- a/doc/classes/MissingResource.xml +++ b/doc/classes/MissingResource.xml @@ -1,5 +1,5 @@ - + An internal editor class intended for keeping the data of unrecognized resources. diff --git a/doc/classes/ModifierBoneTarget3D.xml b/doc/classes/ModifierBoneTarget3D.xml index 9201ad93de0..debb335a394 100644 --- a/doc/classes/ModifierBoneTarget3D.xml +++ b/doc/classes/ModifierBoneTarget3D.xml @@ -1,5 +1,5 @@ - + А node that dynamically copies the 3D transform of a bone in its parent [Skeleton3D]. diff --git a/doc/classes/MovieWriter.xml b/doc/classes/MovieWriter.xml index 39111d2f3a9..69aa770e9ad 100644 --- a/doc/classes/MovieWriter.xml +++ b/doc/classes/MovieWriter.xml @@ -1,5 +1,5 @@ - + Abstract class for non-real-time video recording encoders. diff --git a/doc/classes/MultiMesh.xml b/doc/classes/MultiMesh.xml index ae3963d8fab..4786457e820 100644 --- a/doc/classes/MultiMesh.xml +++ b/doc/classes/MultiMesh.xml @@ -1,5 +1,5 @@ - + Provides high-performance drawing of a mesh multiple times using GPU instancing. diff --git a/doc/classes/MultiMeshInstance2D.xml b/doc/classes/MultiMeshInstance2D.xml index 40ae215bbe1..aec24dd44b1 100644 --- a/doc/classes/MultiMeshInstance2D.xml +++ b/doc/classes/MultiMeshInstance2D.xml @@ -1,5 +1,5 @@ - + Node that instances a [MultiMesh] in 2D. diff --git a/doc/classes/MultiMeshInstance3D.xml b/doc/classes/MultiMeshInstance3D.xml index 5b6fd92d99e..cee683d1873 100644 --- a/doc/classes/MultiMeshInstance3D.xml +++ b/doc/classes/MultiMeshInstance3D.xml @@ -1,5 +1,5 @@ - + Node that instances a [MultiMesh]. diff --git a/doc/classes/MultiplayerAPI.xml b/doc/classes/MultiplayerAPI.xml index 75cb13d25de..1bcf557e3da 100644 --- a/doc/classes/MultiplayerAPI.xml +++ b/doc/classes/MultiplayerAPI.xml @@ -1,5 +1,5 @@ - + High-level multiplayer API interface. diff --git a/doc/classes/MultiplayerAPIExtension.xml b/doc/classes/MultiplayerAPIExtension.xml index 25686d56138..00acf29c8bf 100644 --- a/doc/classes/MultiplayerAPIExtension.xml +++ b/doc/classes/MultiplayerAPIExtension.xml @@ -1,5 +1,5 @@ - + Base class used for extending the [MultiplayerAPI]. diff --git a/doc/classes/MultiplayerPeer.xml b/doc/classes/MultiplayerPeer.xml index 038a3e63ec6..04c56f3a9b5 100644 --- a/doc/classes/MultiplayerPeer.xml +++ b/doc/classes/MultiplayerPeer.xml @@ -1,5 +1,5 @@ - + Abstract class for specialized [PacketPeer]s used by the [MultiplayerAPI]. diff --git a/doc/classes/MultiplayerPeerExtension.xml b/doc/classes/MultiplayerPeerExtension.xml index a987b3b5e6c..9ee14dcbbad 100644 --- a/doc/classes/MultiplayerPeerExtension.xml +++ b/doc/classes/MultiplayerPeerExtension.xml @@ -1,5 +1,5 @@ - + Class that can be inherited to implement custom multiplayer API networking layers via GDExtension. diff --git a/doc/classes/Mutex.xml b/doc/classes/Mutex.xml index 962c55cc775..d92128fbba7 100644 --- a/doc/classes/Mutex.xml +++ b/doc/classes/Mutex.xml @@ -1,5 +1,5 @@ - + A binary [Semaphore] for synchronization of multiple [Thread]s. diff --git a/doc/classes/NativeMenu.xml b/doc/classes/NativeMenu.xml index d8d91d1480c..078d4bad609 100644 --- a/doc/classes/NativeMenu.xml +++ b/doc/classes/NativeMenu.xml @@ -1,5 +1,5 @@ - + A server interface for OS native menus. diff --git a/doc/classes/NavigationAgent2D.xml b/doc/classes/NavigationAgent2D.xml index bb12b4219b1..f58caf4701a 100644 --- a/doc/classes/NavigationAgent2D.xml +++ b/doc/classes/NavigationAgent2D.xml @@ -1,5 +1,5 @@ - + A 2D agent used to pathfind to a position while avoiding obstacles. diff --git a/doc/classes/NavigationAgent3D.xml b/doc/classes/NavigationAgent3D.xml index 8b496693fcd..8e4fe310b0a 100644 --- a/doc/classes/NavigationAgent3D.xml +++ b/doc/classes/NavigationAgent3D.xml @@ -1,5 +1,5 @@ - + A 3D agent used to pathfind to a position while avoiding obstacles. diff --git a/doc/classes/NavigationLink2D.xml b/doc/classes/NavigationLink2D.xml index 2e1c962dd15..7a19da6445a 100644 --- a/doc/classes/NavigationLink2D.xml +++ b/doc/classes/NavigationLink2D.xml @@ -1,5 +1,5 @@ - + A link between two positions on [NavigationRegion2D]s that agents can be routed through. diff --git a/doc/classes/NavigationLink3D.xml b/doc/classes/NavigationLink3D.xml index 174228ea5b2..0d5c5b2ec57 100644 --- a/doc/classes/NavigationLink3D.xml +++ b/doc/classes/NavigationLink3D.xml @@ -1,5 +1,5 @@ - + A link between two positions on [NavigationRegion3D]s that agents can be routed through. diff --git a/doc/classes/NavigationMesh.xml b/doc/classes/NavigationMesh.xml index c410fb80ee3..7420818fbe8 100644 --- a/doc/classes/NavigationMesh.xml +++ b/doc/classes/NavigationMesh.xml @@ -1,5 +1,5 @@ - + A navigation mesh that defines traversable areas and obstacles. diff --git a/doc/classes/NavigationMeshGenerator.xml b/doc/classes/NavigationMeshGenerator.xml index 2ff791d5eef..526d5b6e373 100644 --- a/doc/classes/NavigationMeshGenerator.xml +++ b/doc/classes/NavigationMeshGenerator.xml @@ -1,5 +1,5 @@ - + Helper class for creating and clearing navigation meshes. diff --git a/doc/classes/NavigationMeshSourceGeometryData2D.xml b/doc/classes/NavigationMeshSourceGeometryData2D.xml index 82b6e077fee..e819b90d3e2 100644 --- a/doc/classes/NavigationMeshSourceGeometryData2D.xml +++ b/doc/classes/NavigationMeshSourceGeometryData2D.xml @@ -1,5 +1,5 @@ - + Container for parsed source geometry data used in navigation mesh baking. diff --git a/doc/classes/NavigationMeshSourceGeometryData3D.xml b/doc/classes/NavigationMeshSourceGeometryData3D.xml index 8245ec88e8d..ce060b86d11 100644 --- a/doc/classes/NavigationMeshSourceGeometryData3D.xml +++ b/doc/classes/NavigationMeshSourceGeometryData3D.xml @@ -1,5 +1,5 @@ - + Container for parsed source geometry data used in navigation mesh baking. diff --git a/doc/classes/NavigationObstacle2D.xml b/doc/classes/NavigationObstacle2D.xml index 12205e2ac32..18bfe02eec8 100644 --- a/doc/classes/NavigationObstacle2D.xml +++ b/doc/classes/NavigationObstacle2D.xml @@ -1,5 +1,5 @@ - + 2D obstacle used to affect navigation mesh baking or constrain velocities of avoidance controlled agents. diff --git a/doc/classes/NavigationObstacle3D.xml b/doc/classes/NavigationObstacle3D.xml index bc6dbabc0e7..2043c291847 100644 --- a/doc/classes/NavigationObstacle3D.xml +++ b/doc/classes/NavigationObstacle3D.xml @@ -1,5 +1,5 @@ - + 3D obstacle used to affect navigation mesh baking or constrain velocities of avoidance controlled agents. diff --git a/doc/classes/NavigationPathQueryParameters2D.xml b/doc/classes/NavigationPathQueryParameters2D.xml index 15b94f0d80a..fe057b40794 100644 --- a/doc/classes/NavigationPathQueryParameters2D.xml +++ b/doc/classes/NavigationPathQueryParameters2D.xml @@ -1,5 +1,5 @@ - + Provides parameters for 2D navigation path queries. diff --git a/doc/classes/NavigationPathQueryParameters3D.xml b/doc/classes/NavigationPathQueryParameters3D.xml index b5fef6e4cb7..b466e2d5c00 100644 --- a/doc/classes/NavigationPathQueryParameters3D.xml +++ b/doc/classes/NavigationPathQueryParameters3D.xml @@ -1,5 +1,5 @@ - + Provides parameters for 3D navigation path queries. diff --git a/doc/classes/NavigationPathQueryResult2D.xml b/doc/classes/NavigationPathQueryResult2D.xml index 94d6b6e3e07..6a06883c359 100644 --- a/doc/classes/NavigationPathQueryResult2D.xml +++ b/doc/classes/NavigationPathQueryResult2D.xml @@ -1,5 +1,5 @@ - + Represents the result of a 2D pathfinding query. diff --git a/doc/classes/NavigationPathQueryResult3D.xml b/doc/classes/NavigationPathQueryResult3D.xml index 84a9f7d1d66..1d9d40f8d76 100644 --- a/doc/classes/NavigationPathQueryResult3D.xml +++ b/doc/classes/NavigationPathQueryResult3D.xml @@ -1,5 +1,5 @@ - + Represents the result of a 3D pathfinding query. diff --git a/doc/classes/NavigationPolygon.xml b/doc/classes/NavigationPolygon.xml index cfc513ed987..c8769eac3aa 100644 --- a/doc/classes/NavigationPolygon.xml +++ b/doc/classes/NavigationPolygon.xml @@ -1,5 +1,5 @@ - + A 2D navigation mesh that describes a traversable surface for pathfinding. diff --git a/doc/classes/NavigationRegion2D.xml b/doc/classes/NavigationRegion2D.xml index 731245fb488..a2607705c91 100644 --- a/doc/classes/NavigationRegion2D.xml +++ b/doc/classes/NavigationRegion2D.xml @@ -1,5 +1,5 @@ - + A traversable 2D region that [NavigationAgent2D]s can use for pathfinding. diff --git a/doc/classes/NavigationRegion3D.xml b/doc/classes/NavigationRegion3D.xml index 019afce30bd..a028e0158b2 100644 --- a/doc/classes/NavigationRegion3D.xml +++ b/doc/classes/NavigationRegion3D.xml @@ -1,5 +1,5 @@ - + A traversable 3D region that [NavigationAgent3D]s can use for pathfinding. diff --git a/doc/classes/NavigationServer2D.xml b/doc/classes/NavigationServer2D.xml index a72e3f391cc..ebe01896631 100644 --- a/doc/classes/NavigationServer2D.xml +++ b/doc/classes/NavigationServer2D.xml @@ -1,5 +1,5 @@ - + A server interface for low-level 2D navigation access. diff --git a/doc/classes/NavigationServer2DManager.xml b/doc/classes/NavigationServer2DManager.xml index 7b62e9b7464..853ea7b3e20 100644 --- a/doc/classes/NavigationServer2DManager.xml +++ b/doc/classes/NavigationServer2DManager.xml @@ -1,5 +1,5 @@ - + A singleton for managing [NavigationServer2D] implementations. diff --git a/doc/classes/NavigationServer3D.xml b/doc/classes/NavigationServer3D.xml index 2c9ffdb1a05..16b4149347c 100644 --- a/doc/classes/NavigationServer3D.xml +++ b/doc/classes/NavigationServer3D.xml @@ -1,5 +1,5 @@ - + A server interface for low-level 3D navigation access. diff --git a/doc/classes/NavigationServer3DManager.xml b/doc/classes/NavigationServer3DManager.xml index 7e853f9ff4c..bd4546e5cfc 100644 --- a/doc/classes/NavigationServer3DManager.xml +++ b/doc/classes/NavigationServer3DManager.xml @@ -1,5 +1,5 @@ - + A singleton for managing [NavigationServer3D] implementations. diff --git a/doc/classes/NinePatchRect.xml b/doc/classes/NinePatchRect.xml index 9a3d17e0964..cf47b68ac6a 100644 --- a/doc/classes/NinePatchRect.xml +++ b/doc/classes/NinePatchRect.xml @@ -1,5 +1,5 @@ - + A control that displays a texture by keeping its corners intact, but tiling its edges and center. diff --git a/doc/classes/Node.xml b/doc/classes/Node.xml index 532859a28f0..dba81ded11f 100644 --- a/doc/classes/Node.xml +++ b/doc/classes/Node.xml @@ -1,5 +1,5 @@ - + Base class for all scene objects. diff --git a/doc/classes/Node2D.xml b/doc/classes/Node2D.xml index 4b56f582923..7aebfdca9d7 100644 --- a/doc/classes/Node2D.xml +++ b/doc/classes/Node2D.xml @@ -1,5 +1,5 @@ - + A 2D game object, inherited by all 2D-related nodes. Has a position, rotation, scale, and skew. diff --git a/doc/classes/Node3D.xml b/doc/classes/Node3D.xml index a3f0ee971b7..03a8efdd55f 100644 --- a/doc/classes/Node3D.xml +++ b/doc/classes/Node3D.xml @@ -1,5 +1,5 @@ - + Base object in 3D space, inherited by all 3D nodes. diff --git a/doc/classes/Node3DGizmo.xml b/doc/classes/Node3DGizmo.xml index 844aafae8da..cfb07c6508b 100644 --- a/doc/classes/Node3DGizmo.xml +++ b/doc/classes/Node3DGizmo.xml @@ -1,5 +1,5 @@ - + Abstract class to expose editor gizmos for [Node3D]. diff --git a/doc/classes/ORMMaterial3D.xml b/doc/classes/ORMMaterial3D.xml index 72620573da2..4a08251646a 100644 --- a/doc/classes/ORMMaterial3D.xml +++ b/doc/classes/ORMMaterial3D.xml @@ -1,5 +1,5 @@ - + A PBR (Physically Based Rendering) material to be used on 3D objects. Uses an ORM texture. diff --git a/doc/classes/OS.xml b/doc/classes/OS.xml index bc8f482866c..ba8a14b0a8a 100644 --- a/doc/classes/OS.xml +++ b/doc/classes/OS.xml @@ -1,5 +1,5 @@ - + Provides access to common operating system functionalities. diff --git a/doc/classes/Object.xml b/doc/classes/Object.xml index 3a57cd8a852..7063d881b36 100644 --- a/doc/classes/Object.xml +++ b/doc/classes/Object.xml @@ -1,5 +1,5 @@ - + Base class for all other classes in the engine. diff --git a/doc/classes/Occluder3D.xml b/doc/classes/Occluder3D.xml index 56124cb0538..a4014198969 100644 --- a/doc/classes/Occluder3D.xml +++ b/doc/classes/Occluder3D.xml @@ -1,5 +1,5 @@ - + Occluder shape resource for use with occlusion culling in [OccluderInstance3D]. diff --git a/doc/classes/OccluderInstance3D.xml b/doc/classes/OccluderInstance3D.xml index b3e6366c12f..e3d38ae35b3 100644 --- a/doc/classes/OccluderInstance3D.xml +++ b/doc/classes/OccluderInstance3D.xml @@ -1,5 +1,5 @@ - + Provides occlusion culling for 3D nodes, which improves performance in closed areas. diff --git a/doc/classes/OccluderPolygon2D.xml b/doc/classes/OccluderPolygon2D.xml index 36e1540b392..3642bfa24a7 100644 --- a/doc/classes/OccluderPolygon2D.xml +++ b/doc/classes/OccluderPolygon2D.xml @@ -1,5 +1,5 @@ - + Defines a 2D polygon for LightOccluder2D. diff --git a/doc/classes/OmniLight3D.xml b/doc/classes/OmniLight3D.xml index 8d91663ea14..d3e42232bcb 100644 --- a/doc/classes/OmniLight3D.xml +++ b/doc/classes/OmniLight3D.xml @@ -1,5 +1,5 @@ - + Omnidirectional light, such as a light bulb or a candle. diff --git a/doc/classes/OptimizedTranslation.xml b/doc/classes/OptimizedTranslation.xml index e7a12401a87..09a04299150 100644 --- a/doc/classes/OptimizedTranslation.xml +++ b/doc/classes/OptimizedTranslation.xml @@ -1,5 +1,5 @@ - + An optimized translation. diff --git a/doc/classes/OptionButton.xml b/doc/classes/OptionButton.xml index eff2106587c..5bb9d0d1ad2 100644 --- a/doc/classes/OptionButton.xml +++ b/doc/classes/OptionButton.xml @@ -1,5 +1,5 @@ - + A button that brings up a dropdown with selectable options when pressed. diff --git a/doc/classes/PCKPacker.xml b/doc/classes/PCKPacker.xml index c6a97f02db2..c7e1d02e877 100644 --- a/doc/classes/PCKPacker.xml +++ b/doc/classes/PCKPacker.xml @@ -1,5 +1,5 @@ - + Creates packages that can be loaded into a running project. diff --git a/doc/classes/PackedDataContainer.xml b/doc/classes/PackedDataContainer.xml index 55512ad96a1..72bc75702af 100644 --- a/doc/classes/PackedDataContainer.xml +++ b/doc/classes/PackedDataContainer.xml @@ -1,5 +1,5 @@ - + Efficiently packs and serializes [Array] or [Dictionary]. diff --git a/doc/classes/PackedDataContainerRef.xml b/doc/classes/PackedDataContainerRef.xml index bd1dbbeafc4..54e88c21685 100644 --- a/doc/classes/PackedDataContainerRef.xml +++ b/doc/classes/PackedDataContainerRef.xml @@ -1,5 +1,5 @@ - + An internal class used by [PackedDataContainer] to pack nested arrays and dictionaries. diff --git a/doc/classes/PackedScene.xml b/doc/classes/PackedScene.xml index 588c0593e59..ffa795f058a 100644 --- a/doc/classes/PackedScene.xml +++ b/doc/classes/PackedScene.xml @@ -1,5 +1,5 @@ - + An abstraction of a serialized scene. diff --git a/doc/classes/PacketPeer.xml b/doc/classes/PacketPeer.xml index 9a2a23c9b71..8254065d563 100644 --- a/doc/classes/PacketPeer.xml +++ b/doc/classes/PacketPeer.xml @@ -1,5 +1,5 @@ - + Abstraction and base class for packet-based protocols. diff --git a/doc/classes/PacketPeerDTLS.xml b/doc/classes/PacketPeerDTLS.xml index 6598c33da58..83a284d1b3f 100644 --- a/doc/classes/PacketPeerDTLS.xml +++ b/doc/classes/PacketPeerDTLS.xml @@ -1,5 +1,5 @@ - + DTLS packet peer. diff --git a/doc/classes/PacketPeerExtension.xml b/doc/classes/PacketPeerExtension.xml index 23d95ecfd2f..bc6ddb00cf2 100644 --- a/doc/classes/PacketPeerExtension.xml +++ b/doc/classes/PacketPeerExtension.xml @@ -1,5 +1,5 @@ - + diff --git a/doc/classes/PacketPeerStream.xml b/doc/classes/PacketPeerStream.xml index 57bd4e007a6..f2dac43d53c 100644 --- a/doc/classes/PacketPeerStream.xml +++ b/doc/classes/PacketPeerStream.xml @@ -1,5 +1,5 @@ - + Wrapper to use a PacketPeer over a StreamPeer. diff --git a/doc/classes/PacketPeerUDP.xml b/doc/classes/PacketPeerUDP.xml index 0f17357078a..37873ed0ef4 100644 --- a/doc/classes/PacketPeerUDP.xml +++ b/doc/classes/PacketPeerUDP.xml @@ -1,5 +1,5 @@ - + UDP packet peer. diff --git a/doc/classes/Panel.xml b/doc/classes/Panel.xml index 993c383c709..ad96a79a28f 100644 --- a/doc/classes/Panel.xml +++ b/doc/classes/Panel.xml @@ -1,5 +1,5 @@ - + A GUI control that displays a [StyleBox]. diff --git a/doc/classes/PanelContainer.xml b/doc/classes/PanelContainer.xml index c2972abc140..483f4c50178 100644 --- a/doc/classes/PanelContainer.xml +++ b/doc/classes/PanelContainer.xml @@ -1,5 +1,5 @@ - + A container that keeps its child controls within the area of a [StyleBox]. diff --git a/doc/classes/PanoramaSkyMaterial.xml b/doc/classes/PanoramaSkyMaterial.xml index 9e579cc7e57..d355bfab2a6 100644 --- a/doc/classes/PanoramaSkyMaterial.xml +++ b/doc/classes/PanoramaSkyMaterial.xml @@ -1,5 +1,5 @@ - + A material that provides a special texture to a [Sky], usually an HDR panorama. diff --git a/doc/classes/Parallax2D.xml b/doc/classes/Parallax2D.xml index 18953521d19..be6d721e4b2 100644 --- a/doc/classes/Parallax2D.xml +++ b/doc/classes/Parallax2D.xml @@ -1,5 +1,5 @@ - + A node used to create a parallax scrolling background. diff --git a/doc/classes/ParallaxBackground.xml b/doc/classes/ParallaxBackground.xml index 3b495d0d7a9..280f7183a99 100644 --- a/doc/classes/ParallaxBackground.xml +++ b/doc/classes/ParallaxBackground.xml @@ -1,5 +1,5 @@ - + A node used to create a parallax scrolling background. diff --git a/doc/classes/ParallaxLayer.xml b/doc/classes/ParallaxLayer.xml index f469260bb98..6c4ea917eb5 100644 --- a/doc/classes/ParallaxLayer.xml +++ b/doc/classes/ParallaxLayer.xml @@ -1,5 +1,5 @@ - + A parallax scrolling layer to be used with [ParallaxBackground]. diff --git a/doc/classes/ParticleProcessMaterial.xml b/doc/classes/ParticleProcessMaterial.xml index ab53a7a6894..2f3d3f54c8f 100644 --- a/doc/classes/ParticleProcessMaterial.xml +++ b/doc/classes/ParticleProcessMaterial.xml @@ -1,5 +1,5 @@ - + Holds a particle configuration for [GPUParticles2D] or [GPUParticles3D] nodes. diff --git a/doc/classes/Path2D.xml b/doc/classes/Path2D.xml index 7c4b1822588..234fc34ce72 100644 --- a/doc/classes/Path2D.xml +++ b/doc/classes/Path2D.xml @@ -1,5 +1,5 @@ - + Contains a [Curve2D] path for [PathFollow2D] nodes to follow. diff --git a/doc/classes/Path3D.xml b/doc/classes/Path3D.xml index d2696526019..f04232b901a 100644 --- a/doc/classes/Path3D.xml +++ b/doc/classes/Path3D.xml @@ -1,5 +1,5 @@ - + Contains a [Curve3D] path for [PathFollow3D] nodes to follow. diff --git a/doc/classes/PathFollow2D.xml b/doc/classes/PathFollow2D.xml index 7444bfc23aa..0290e79811d 100644 --- a/doc/classes/PathFollow2D.xml +++ b/doc/classes/PathFollow2D.xml @@ -1,5 +1,5 @@ - + Point sampler for a [Path2D]. diff --git a/doc/classes/PathFollow3D.xml b/doc/classes/PathFollow3D.xml index bcd04d51ca2..b0d90846bcc 100644 --- a/doc/classes/PathFollow3D.xml +++ b/doc/classes/PathFollow3D.xml @@ -1,5 +1,5 @@ - + Point sampler for a [Path3D]. diff --git a/doc/classes/Performance.xml b/doc/classes/Performance.xml index d204b435f15..851832ed697 100644 --- a/doc/classes/Performance.xml +++ b/doc/classes/Performance.xml @@ -1,5 +1,5 @@ - + Exposes performance-related data. diff --git a/doc/classes/PhysicalBone2D.xml b/doc/classes/PhysicalBone2D.xml index db8c61ed549..cdce32f084e 100644 --- a/doc/classes/PhysicalBone2D.xml +++ b/doc/classes/PhysicalBone2D.xml @@ -1,5 +1,5 @@ - + A [RigidBody2D]-derived node used to make [Bone2D]s in a [Skeleton2D] react to physics. diff --git a/doc/classes/PhysicalBone3D.xml b/doc/classes/PhysicalBone3D.xml index 35952e24324..079dc728de2 100644 --- a/doc/classes/PhysicalBone3D.xml +++ b/doc/classes/PhysicalBone3D.xml @@ -1,5 +1,5 @@ - + A physics body used to make bones in a [Skeleton3D] react to physics. diff --git a/doc/classes/PhysicalBoneSimulator3D.xml b/doc/classes/PhysicalBoneSimulator3D.xml index 149993e1e29..4906cbf9d20 100644 --- a/doc/classes/PhysicalBoneSimulator3D.xml +++ b/doc/classes/PhysicalBoneSimulator3D.xml @@ -1,5 +1,5 @@ - + Node that can be the parent of [PhysicalBone3D] and can apply the simulation results to [Skeleton3D]. diff --git a/doc/classes/PhysicalSkyMaterial.xml b/doc/classes/PhysicalSkyMaterial.xml index 460134e5ba4..945b3951af5 100644 --- a/doc/classes/PhysicalSkyMaterial.xml +++ b/doc/classes/PhysicalSkyMaterial.xml @@ -1,5 +1,5 @@ - + A material that defines a sky for a [Sky] resource by a set of physical properties. diff --git a/doc/classes/PhysicsBody2D.xml b/doc/classes/PhysicsBody2D.xml index ca064db0746..0782266eefa 100644 --- a/doc/classes/PhysicsBody2D.xml +++ b/doc/classes/PhysicsBody2D.xml @@ -1,5 +1,5 @@ - + Abstract base class for 2D game objects affected by physics. diff --git a/doc/classes/PhysicsBody3D.xml b/doc/classes/PhysicsBody3D.xml index 6da20afa8f9..b05ead1865b 100644 --- a/doc/classes/PhysicsBody3D.xml +++ b/doc/classes/PhysicsBody3D.xml @@ -1,5 +1,5 @@ - + Abstract base class for 3D game objects affected by physics. diff --git a/doc/classes/PhysicsDirectBodyState2D.xml b/doc/classes/PhysicsDirectBodyState2D.xml index c9f75f97b45..61117ae59cf 100644 --- a/doc/classes/PhysicsDirectBodyState2D.xml +++ b/doc/classes/PhysicsDirectBodyState2D.xml @@ -1,5 +1,5 @@ - + Provides direct access to a physics body in the [PhysicsServer2D]. diff --git a/doc/classes/PhysicsDirectBodyState2DExtension.xml b/doc/classes/PhysicsDirectBodyState2DExtension.xml index 25ad7e23f14..31400cd7fff 100644 --- a/doc/classes/PhysicsDirectBodyState2DExtension.xml +++ b/doc/classes/PhysicsDirectBodyState2DExtension.xml @@ -1,5 +1,5 @@ - + Provides virtual methods that can be overridden to create custom [PhysicsDirectBodyState2D] implementations. diff --git a/doc/classes/PhysicsDirectBodyState3D.xml b/doc/classes/PhysicsDirectBodyState3D.xml index 53140299a64..53b4c590e03 100644 --- a/doc/classes/PhysicsDirectBodyState3D.xml +++ b/doc/classes/PhysicsDirectBodyState3D.xml @@ -1,5 +1,5 @@ - + Provides direct access to a physics body in the [PhysicsServer3D]. diff --git a/doc/classes/PhysicsDirectBodyState3DExtension.xml b/doc/classes/PhysicsDirectBodyState3DExtension.xml index cecc37e30ef..3dba6688741 100644 --- a/doc/classes/PhysicsDirectBodyState3DExtension.xml +++ b/doc/classes/PhysicsDirectBodyState3DExtension.xml @@ -1,5 +1,5 @@ - + Provides virtual methods that can be overridden to create custom [PhysicsDirectBodyState3D] implementations. diff --git a/doc/classes/PhysicsDirectSpaceState2D.xml b/doc/classes/PhysicsDirectSpaceState2D.xml index ed7f6d299e9..d6f08cebcab 100644 --- a/doc/classes/PhysicsDirectSpaceState2D.xml +++ b/doc/classes/PhysicsDirectSpaceState2D.xml @@ -1,5 +1,5 @@ - + Provides direct access to a physics space in the [PhysicsServer2D]. diff --git a/doc/classes/PhysicsDirectSpaceState2DExtension.xml b/doc/classes/PhysicsDirectSpaceState2DExtension.xml index a551ab15dd9..c5985c58644 100644 --- a/doc/classes/PhysicsDirectSpaceState2DExtension.xml +++ b/doc/classes/PhysicsDirectSpaceState2DExtension.xml @@ -1,5 +1,5 @@ - + Provides virtual methods that can be overridden to create custom [PhysicsDirectSpaceState2D] implementations. diff --git a/doc/classes/PhysicsDirectSpaceState3D.xml b/doc/classes/PhysicsDirectSpaceState3D.xml index 76433a7d644..b13abb04da0 100644 --- a/doc/classes/PhysicsDirectSpaceState3D.xml +++ b/doc/classes/PhysicsDirectSpaceState3D.xml @@ -1,5 +1,5 @@ - + Provides direct access to a physics space in the [PhysicsServer3D]. diff --git a/doc/classes/PhysicsDirectSpaceState3DExtension.xml b/doc/classes/PhysicsDirectSpaceState3DExtension.xml index f97f60a878c..07cf424e923 100644 --- a/doc/classes/PhysicsDirectSpaceState3DExtension.xml +++ b/doc/classes/PhysicsDirectSpaceState3DExtension.xml @@ -1,5 +1,5 @@ - + Provides virtual methods that can be overridden to create custom [PhysicsDirectSpaceState3D] implementations. diff --git a/doc/classes/PhysicsMaterial.xml b/doc/classes/PhysicsMaterial.xml index 03cbfb4ce72..aa98ca004c7 100644 --- a/doc/classes/PhysicsMaterial.xml +++ b/doc/classes/PhysicsMaterial.xml @@ -1,5 +1,5 @@ - + Holds physics-related properties of a surface, namely its roughness and bounciness. diff --git a/doc/classes/PhysicsPointQueryParameters2D.xml b/doc/classes/PhysicsPointQueryParameters2D.xml index 642e87947ad..88d03a42f9d 100644 --- a/doc/classes/PhysicsPointQueryParameters2D.xml +++ b/doc/classes/PhysicsPointQueryParameters2D.xml @@ -1,5 +1,5 @@ - + Provides parameters for [method PhysicsDirectSpaceState2D.intersect_point]. diff --git a/doc/classes/PhysicsPointQueryParameters3D.xml b/doc/classes/PhysicsPointQueryParameters3D.xml index a53300c78db..133afe252f8 100644 --- a/doc/classes/PhysicsPointQueryParameters3D.xml +++ b/doc/classes/PhysicsPointQueryParameters3D.xml @@ -1,5 +1,5 @@ - + Provides parameters for [method PhysicsDirectSpaceState3D.intersect_point]. diff --git a/doc/classes/PhysicsRayQueryParameters2D.xml b/doc/classes/PhysicsRayQueryParameters2D.xml index a9738b46905..e7366261b9e 100644 --- a/doc/classes/PhysicsRayQueryParameters2D.xml +++ b/doc/classes/PhysicsRayQueryParameters2D.xml @@ -1,5 +1,5 @@ - + Provides parameters for [method PhysicsDirectSpaceState2D.intersect_ray]. diff --git a/doc/classes/PhysicsRayQueryParameters3D.xml b/doc/classes/PhysicsRayQueryParameters3D.xml index 175b594fb0d..88611445753 100644 --- a/doc/classes/PhysicsRayQueryParameters3D.xml +++ b/doc/classes/PhysicsRayQueryParameters3D.xml @@ -1,5 +1,5 @@ - + Provides parameters for [method PhysicsDirectSpaceState3D.intersect_ray]. diff --git a/doc/classes/PhysicsServer2D.xml b/doc/classes/PhysicsServer2D.xml index 8f84fb8c00a..b16b1551fa2 100644 --- a/doc/classes/PhysicsServer2D.xml +++ b/doc/classes/PhysicsServer2D.xml @@ -1,5 +1,5 @@ - + A server interface for low-level 2D physics access. diff --git a/doc/classes/PhysicsServer2DExtension.xml b/doc/classes/PhysicsServer2DExtension.xml index 26769b6552b..a1f22ed1284 100644 --- a/doc/classes/PhysicsServer2DExtension.xml +++ b/doc/classes/PhysicsServer2DExtension.xml @@ -1,5 +1,5 @@ - + Provides virtual methods that can be overridden to create custom [PhysicsServer2D] implementations. diff --git a/doc/classes/PhysicsServer2DManager.xml b/doc/classes/PhysicsServer2DManager.xml index 5b6e9812f6c..af00d0d81f2 100644 --- a/doc/classes/PhysicsServer2DManager.xml +++ b/doc/classes/PhysicsServer2DManager.xml @@ -1,5 +1,5 @@ - + A singleton for managing [PhysicsServer2D] implementations. diff --git a/doc/classes/PhysicsServer3D.xml b/doc/classes/PhysicsServer3D.xml index c49ad32bec1..54eb85f49d7 100644 --- a/doc/classes/PhysicsServer3D.xml +++ b/doc/classes/PhysicsServer3D.xml @@ -1,5 +1,5 @@ - + A server interface for low-level 3D physics access. diff --git a/doc/classes/PhysicsServer3DExtension.xml b/doc/classes/PhysicsServer3DExtension.xml index 3e283fb26c7..5a4e6ab22a0 100644 --- a/doc/classes/PhysicsServer3DExtension.xml +++ b/doc/classes/PhysicsServer3DExtension.xml @@ -1,5 +1,5 @@ - + Provides virtual methods that can be overridden to create custom [PhysicsServer3D] implementations. diff --git a/doc/classes/PhysicsServer3DManager.xml b/doc/classes/PhysicsServer3DManager.xml index a187f3c355f..aafc48ec121 100644 --- a/doc/classes/PhysicsServer3DManager.xml +++ b/doc/classes/PhysicsServer3DManager.xml @@ -1,5 +1,5 @@ - + A singleton for managing [PhysicsServer3D] implementations. diff --git a/doc/classes/PhysicsServer3DRenderingServerHandler.xml b/doc/classes/PhysicsServer3DRenderingServerHandler.xml index e266a1c8f34..6c3c3bc34c3 100644 --- a/doc/classes/PhysicsServer3DRenderingServerHandler.xml +++ b/doc/classes/PhysicsServer3DRenderingServerHandler.xml @@ -1,5 +1,5 @@ - + A class used to provide [method PhysicsServer3DExtension._soft_body_update_rendering_server] with a rendering handler for soft bodies. diff --git a/doc/classes/PhysicsShapeQueryParameters2D.xml b/doc/classes/PhysicsShapeQueryParameters2D.xml index d4b9722d19c..32a67647b77 100644 --- a/doc/classes/PhysicsShapeQueryParameters2D.xml +++ b/doc/classes/PhysicsShapeQueryParameters2D.xml @@ -1,5 +1,5 @@ - + Provides parameters for [PhysicsDirectSpaceState2D]'s methods. diff --git a/doc/classes/PhysicsShapeQueryParameters3D.xml b/doc/classes/PhysicsShapeQueryParameters3D.xml index 06271e964e2..b51842bc153 100644 --- a/doc/classes/PhysicsShapeQueryParameters3D.xml +++ b/doc/classes/PhysicsShapeQueryParameters3D.xml @@ -1,5 +1,5 @@ - + Provides parameters for [PhysicsDirectSpaceState3D]'s methods. diff --git a/doc/classes/PhysicsTestMotionParameters2D.xml b/doc/classes/PhysicsTestMotionParameters2D.xml index 1288bfaf916..b410cd66079 100644 --- a/doc/classes/PhysicsTestMotionParameters2D.xml +++ b/doc/classes/PhysicsTestMotionParameters2D.xml @@ -1,5 +1,5 @@ - + Provides parameters for [method PhysicsServer2D.body_test_motion]. diff --git a/doc/classes/PhysicsTestMotionParameters3D.xml b/doc/classes/PhysicsTestMotionParameters3D.xml index 9995f0cbc83..a1e854be11e 100644 --- a/doc/classes/PhysicsTestMotionParameters3D.xml +++ b/doc/classes/PhysicsTestMotionParameters3D.xml @@ -1,5 +1,5 @@ - + Provides parameters for [method PhysicsServer3D.body_test_motion]. diff --git a/doc/classes/PhysicsTestMotionResult2D.xml b/doc/classes/PhysicsTestMotionResult2D.xml index 1b12431f7f7..404b727ecda 100644 --- a/doc/classes/PhysicsTestMotionResult2D.xml +++ b/doc/classes/PhysicsTestMotionResult2D.xml @@ -1,5 +1,5 @@ - + Describes the motion and collision result from [method PhysicsServer2D.body_test_motion]. diff --git a/doc/classes/PhysicsTestMotionResult3D.xml b/doc/classes/PhysicsTestMotionResult3D.xml index 0dac6115bc1..e1f771d0633 100644 --- a/doc/classes/PhysicsTestMotionResult3D.xml +++ b/doc/classes/PhysicsTestMotionResult3D.xml @@ -1,5 +1,5 @@ - + Describes the motion and collision result from [method PhysicsServer3D.body_test_motion]. diff --git a/doc/classes/PinJoint2D.xml b/doc/classes/PinJoint2D.xml index a252f603122..25981f08e01 100644 --- a/doc/classes/PinJoint2D.xml +++ b/doc/classes/PinJoint2D.xml @@ -1,5 +1,5 @@ - + A physics joint that attaches two 2D physics bodies at a single point, allowing them to freely rotate. diff --git a/doc/classes/PinJoint3D.xml b/doc/classes/PinJoint3D.xml index 9009f0b6586..c263f93f725 100644 --- a/doc/classes/PinJoint3D.xml +++ b/doc/classes/PinJoint3D.xml @@ -1,5 +1,5 @@ - + A physics joint that attaches two 3D physics bodies at a single point, allowing them to freely rotate. diff --git a/doc/classes/PlaceholderCubemap.xml b/doc/classes/PlaceholderCubemap.xml index 9cd0c26926a..1c4160ebabe 100644 --- a/doc/classes/PlaceholderCubemap.xml +++ b/doc/classes/PlaceholderCubemap.xml @@ -1,5 +1,5 @@ - + A [Cubemap] without image data. diff --git a/doc/classes/PlaceholderCubemapArray.xml b/doc/classes/PlaceholderCubemapArray.xml index 9ffbc316a8e..071f5fadcc7 100644 --- a/doc/classes/PlaceholderCubemapArray.xml +++ b/doc/classes/PlaceholderCubemapArray.xml @@ -1,5 +1,5 @@ - + A [CubemapArray] without image data. diff --git a/doc/classes/PlaceholderMaterial.xml b/doc/classes/PlaceholderMaterial.xml index 25957f5fb2d..f7c2fa26e0f 100644 --- a/doc/classes/PlaceholderMaterial.xml +++ b/doc/classes/PlaceholderMaterial.xml @@ -1,5 +1,5 @@ - + Placeholder class for a material. diff --git a/doc/classes/PlaceholderMesh.xml b/doc/classes/PlaceholderMesh.xml index 30234dbeab8..cda06c49edc 100644 --- a/doc/classes/PlaceholderMesh.xml +++ b/doc/classes/PlaceholderMesh.xml @@ -1,5 +1,5 @@ - + Placeholder class for a mesh. diff --git a/doc/classes/PlaceholderTexture2D.xml b/doc/classes/PlaceholderTexture2D.xml index c48a9ee58b1..5a1e843701d 100644 --- a/doc/classes/PlaceholderTexture2D.xml +++ b/doc/classes/PlaceholderTexture2D.xml @@ -1,5 +1,5 @@ - + Placeholder class for a 2-dimensional texture. diff --git a/doc/classes/PlaceholderTexture2DArray.xml b/doc/classes/PlaceholderTexture2DArray.xml index 3dcd5786486..f8a505106e5 100644 --- a/doc/classes/PlaceholderTexture2DArray.xml +++ b/doc/classes/PlaceholderTexture2DArray.xml @@ -1,5 +1,5 @@ - + Placeholder class for a 2-dimensional texture array. diff --git a/doc/classes/PlaceholderTexture3D.xml b/doc/classes/PlaceholderTexture3D.xml index d290799f64f..ae068670bde 100644 --- a/doc/classes/PlaceholderTexture3D.xml +++ b/doc/classes/PlaceholderTexture3D.xml @@ -1,5 +1,5 @@ - + Placeholder class for a 3-dimensional texture. diff --git a/doc/classes/PlaceholderTextureLayered.xml b/doc/classes/PlaceholderTextureLayered.xml index a0385b2793c..1df0004a4a1 100644 --- a/doc/classes/PlaceholderTextureLayered.xml +++ b/doc/classes/PlaceholderTextureLayered.xml @@ -1,5 +1,5 @@ - + Placeholder class for a 2-dimensional texture array. diff --git a/doc/classes/PlaneMesh.xml b/doc/classes/PlaneMesh.xml index 575ae01ab34..4780366b4e5 100644 --- a/doc/classes/PlaneMesh.xml +++ b/doc/classes/PlaneMesh.xml @@ -1,5 +1,5 @@ - + Class representing a planar [PrimitiveMesh]. diff --git a/doc/classes/PointLight2D.xml b/doc/classes/PointLight2D.xml index 9af3667126d..45f14531708 100644 --- a/doc/classes/PointLight2D.xml +++ b/doc/classes/PointLight2D.xml @@ -1,5 +1,5 @@ - + Positional 2D light source. diff --git a/doc/classes/PointMesh.xml b/doc/classes/PointMesh.xml index 87ca4777f37..280ed179c84 100644 --- a/doc/classes/PointMesh.xml +++ b/doc/classes/PointMesh.xml @@ -1,5 +1,5 @@ - + Mesh with a single point primitive. diff --git a/doc/classes/Polygon2D.xml b/doc/classes/Polygon2D.xml index 4e9208d9bb5..b52ed088f36 100644 --- a/doc/classes/Polygon2D.xml +++ b/doc/classes/Polygon2D.xml @@ -1,5 +1,5 @@ - + A 2D polygon. diff --git a/doc/classes/PolygonOccluder3D.xml b/doc/classes/PolygonOccluder3D.xml index 227f986f926..0e16ea63d9d 100644 --- a/doc/classes/PolygonOccluder3D.xml +++ b/doc/classes/PolygonOccluder3D.xml @@ -1,5 +1,5 @@ - + Flat 2D polygon shape for use with occlusion culling in [OccluderInstance3D]. diff --git a/doc/classes/PolygonPathFinder.xml b/doc/classes/PolygonPathFinder.xml index 1c8d158c4ce..3ce0a484611 100644 --- a/doc/classes/PolygonPathFinder.xml +++ b/doc/classes/PolygonPathFinder.xml @@ -1,5 +1,5 @@ - + diff --git a/doc/classes/Popup.xml b/doc/classes/Popup.xml index 2d94544022f..59091396ef2 100644 --- a/doc/classes/Popup.xml +++ b/doc/classes/Popup.xml @@ -1,5 +1,5 @@ - + Base class for contextual windows and panels with fixed position. diff --git a/doc/classes/PopupMenu.xml b/doc/classes/PopupMenu.xml index 14c44d5fab2..ddcb40c9a82 100644 --- a/doc/classes/PopupMenu.xml +++ b/doc/classes/PopupMenu.xml @@ -1,5 +1,5 @@ - + A modal window used to display a list of options. diff --git a/doc/classes/PopupPanel.xml b/doc/classes/PopupPanel.xml index 34e2d21063a..50b2486faea 100644 --- a/doc/classes/PopupPanel.xml +++ b/doc/classes/PopupPanel.xml @@ -1,5 +1,5 @@ - + A popup with a panel background. diff --git a/doc/classes/PortableCompressedTexture2D.xml b/doc/classes/PortableCompressedTexture2D.xml index db768ad5209..c6212eccc30 100644 --- a/doc/classes/PortableCompressedTexture2D.xml +++ b/doc/classes/PortableCompressedTexture2D.xml @@ -1,5 +1,5 @@ - + Provides a compressed texture for disk and/or VRAM in a way that is portable. diff --git a/doc/classes/PrimitiveMesh.xml b/doc/classes/PrimitiveMesh.xml index fdbbd767162..9554b5fec91 100644 --- a/doc/classes/PrimitiveMesh.xml +++ b/doc/classes/PrimitiveMesh.xml @@ -1,5 +1,5 @@ - + Base class for all primitive meshes. Handles applying a [Material] to a primitive mesh. diff --git a/doc/classes/PrismMesh.xml b/doc/classes/PrismMesh.xml index 862994e9b79..70da4437482 100644 --- a/doc/classes/PrismMesh.xml +++ b/doc/classes/PrismMesh.xml @@ -1,5 +1,5 @@ - + Class representing a prism-shaped [PrimitiveMesh]. diff --git a/doc/classes/ProceduralSkyMaterial.xml b/doc/classes/ProceduralSkyMaterial.xml index 1503bb2e780..9eafb3ccc75 100644 --- a/doc/classes/ProceduralSkyMaterial.xml +++ b/doc/classes/ProceduralSkyMaterial.xml @@ -1,5 +1,5 @@ - + A material that defines a simple sky for a [Sky] resource. diff --git a/doc/classes/ProgressBar.xml b/doc/classes/ProgressBar.xml index fcfd995002a..8f948b67ac4 100644 --- a/doc/classes/ProgressBar.xml +++ b/doc/classes/ProgressBar.xml @@ -1,5 +1,5 @@ - + A control used for visual representation of a percentage. diff --git a/doc/classes/ProjectSettings.xml b/doc/classes/ProjectSettings.xml index ddcef3340e0..a251c0806b4 100644 --- a/doc/classes/ProjectSettings.xml +++ b/doc/classes/ProjectSettings.xml @@ -1,5 +1,5 @@ - + Stores globally-accessible variables. diff --git a/doc/classes/PropertyTweener.xml b/doc/classes/PropertyTweener.xml index 825a2c70e6a..e6d245245f4 100644 --- a/doc/classes/PropertyTweener.xml +++ b/doc/classes/PropertyTweener.xml @@ -1,5 +1,5 @@ - + Interpolates an [Object]'s property over time. diff --git a/doc/classes/QuadMesh.xml b/doc/classes/QuadMesh.xml index d840616fdd7..a23cfd0d778 100644 --- a/doc/classes/QuadMesh.xml +++ b/doc/classes/QuadMesh.xml @@ -1,5 +1,5 @@ - + Class representing a square mesh facing the camera. diff --git a/doc/classes/QuadOccluder3D.xml b/doc/classes/QuadOccluder3D.xml index fd28cbbaac9..947a8293555 100644 --- a/doc/classes/QuadOccluder3D.xml +++ b/doc/classes/QuadOccluder3D.xml @@ -1,5 +1,5 @@ - + Flat plane shape for use with occlusion culling in [OccluderInstance3D]. diff --git a/doc/classes/RDAttachmentFormat.xml b/doc/classes/RDAttachmentFormat.xml index 876162b80a1..5d6e0f07881 100644 --- a/doc/classes/RDAttachmentFormat.xml +++ b/doc/classes/RDAttachmentFormat.xml @@ -1,5 +1,5 @@ - + Attachment format (used by [RenderingDevice]). diff --git a/doc/classes/RDFramebufferPass.xml b/doc/classes/RDFramebufferPass.xml index 5ebe656aa99..4a953f90580 100644 --- a/doc/classes/RDFramebufferPass.xml +++ b/doc/classes/RDFramebufferPass.xml @@ -1,5 +1,5 @@ - + Framebuffer pass attachment description (used by [RenderingDevice]). diff --git a/doc/classes/RDPipelineColorBlendState.xml b/doc/classes/RDPipelineColorBlendState.xml index 550d1ab93e5..d02fb99ddcf 100644 --- a/doc/classes/RDPipelineColorBlendState.xml +++ b/doc/classes/RDPipelineColorBlendState.xml @@ -1,5 +1,5 @@ - + Pipeline color blend state (used by [RenderingDevice]). diff --git a/doc/classes/RDPipelineColorBlendStateAttachment.xml b/doc/classes/RDPipelineColorBlendStateAttachment.xml index 616e6343bab..c526f470c8d 100644 --- a/doc/classes/RDPipelineColorBlendStateAttachment.xml +++ b/doc/classes/RDPipelineColorBlendStateAttachment.xml @@ -1,5 +1,5 @@ - + Pipeline color blend state attachment (used by [RenderingDevice]). diff --git a/doc/classes/RDPipelineDepthStencilState.xml b/doc/classes/RDPipelineDepthStencilState.xml index 425890bb8d2..162d6b080c8 100644 --- a/doc/classes/RDPipelineDepthStencilState.xml +++ b/doc/classes/RDPipelineDepthStencilState.xml @@ -1,5 +1,5 @@ - + Pipeline depth/stencil state (used by [RenderingDevice]). diff --git a/doc/classes/RDPipelineMultisampleState.xml b/doc/classes/RDPipelineMultisampleState.xml index 94b8e3d1379..2286e5f270c 100644 --- a/doc/classes/RDPipelineMultisampleState.xml +++ b/doc/classes/RDPipelineMultisampleState.xml @@ -1,5 +1,5 @@ - + Pipeline multisample state (used by [RenderingDevice]). diff --git a/doc/classes/RDPipelineRasterizationState.xml b/doc/classes/RDPipelineRasterizationState.xml index 034abc688cb..ecca296c3a6 100644 --- a/doc/classes/RDPipelineRasterizationState.xml +++ b/doc/classes/RDPipelineRasterizationState.xml @@ -1,5 +1,5 @@ - + Pipeline rasterization state (used by [RenderingDevice]). diff --git a/doc/classes/RDPipelineSpecializationConstant.xml b/doc/classes/RDPipelineSpecializationConstant.xml index 3a45465cbf7..c3e6f0d6c58 100644 --- a/doc/classes/RDPipelineSpecializationConstant.xml +++ b/doc/classes/RDPipelineSpecializationConstant.xml @@ -1,5 +1,5 @@ - + Pipeline specialization constant (used by [RenderingDevice]). diff --git a/doc/classes/RDSamplerState.xml b/doc/classes/RDSamplerState.xml index f1ba6302261..16589d29f01 100644 --- a/doc/classes/RDSamplerState.xml +++ b/doc/classes/RDSamplerState.xml @@ -1,5 +1,5 @@ - + Sampler state (used by [RenderingDevice]). diff --git a/doc/classes/RDShaderFile.xml b/doc/classes/RDShaderFile.xml index 62e2b02e2c1..54746f88295 100644 --- a/doc/classes/RDShaderFile.xml +++ b/doc/classes/RDShaderFile.xml @@ -1,5 +1,5 @@ - + Compiled shader file in SPIR-V form (used by [RenderingDevice]). Not to be confused with Godot's own [Shader]. diff --git a/doc/classes/RDShaderSPIRV.xml b/doc/classes/RDShaderSPIRV.xml index b71c227ba52..7430e9ead3c 100644 --- a/doc/classes/RDShaderSPIRV.xml +++ b/doc/classes/RDShaderSPIRV.xml @@ -1,5 +1,5 @@ - + SPIR-V intermediate representation as part of an [RDShaderFile] (used by [RenderingDevice]). diff --git a/doc/classes/RDShaderSource.xml b/doc/classes/RDShaderSource.xml index 1b8d5fd7af7..1172d8de007 100644 --- a/doc/classes/RDShaderSource.xml +++ b/doc/classes/RDShaderSource.xml @@ -1,5 +1,5 @@ - + Shader source code (used by [RenderingDevice]). diff --git a/doc/classes/RDTextureFormat.xml b/doc/classes/RDTextureFormat.xml index 617ed954347..cf0c03d7f21 100644 --- a/doc/classes/RDTextureFormat.xml +++ b/doc/classes/RDTextureFormat.xml @@ -1,5 +1,5 @@ - + Texture format (used by [RenderingDevice]). diff --git a/doc/classes/RDTextureView.xml b/doc/classes/RDTextureView.xml index 2e03ee44aab..e763a337e9f 100644 --- a/doc/classes/RDTextureView.xml +++ b/doc/classes/RDTextureView.xml @@ -1,5 +1,5 @@ - + Texture view (used by [RenderingDevice]). diff --git a/doc/classes/RDUniform.xml b/doc/classes/RDUniform.xml index 77aaf0aae7e..d1591c229aa 100644 --- a/doc/classes/RDUniform.xml +++ b/doc/classes/RDUniform.xml @@ -1,5 +1,5 @@ - + Shader uniform (used by [RenderingDevice]). diff --git a/doc/classes/RDVertexAttribute.xml b/doc/classes/RDVertexAttribute.xml index ef5e8f8c97d..7bc98ca0f99 100644 --- a/doc/classes/RDVertexAttribute.xml +++ b/doc/classes/RDVertexAttribute.xml @@ -1,5 +1,5 @@ - + Vertex attribute (used by [RenderingDevice]). diff --git a/doc/classes/RandomNumberGenerator.xml b/doc/classes/RandomNumberGenerator.xml index 88b46398077..2d873a774dd 100644 --- a/doc/classes/RandomNumberGenerator.xml +++ b/doc/classes/RandomNumberGenerator.xml @@ -1,5 +1,5 @@ - + Provides methods for generating pseudo-random numbers. diff --git a/doc/classes/Range.xml b/doc/classes/Range.xml index 4ee7d19cd06..81daabb1544 100644 --- a/doc/classes/Range.xml +++ b/doc/classes/Range.xml @@ -1,5 +1,5 @@ - + Abstract base class for controls that represent a number within a range. diff --git a/doc/classes/RayCast2D.xml b/doc/classes/RayCast2D.xml index bbb960451b2..0886d52f41e 100644 --- a/doc/classes/RayCast2D.xml +++ b/doc/classes/RayCast2D.xml @@ -1,5 +1,5 @@ - + A ray in 2D space, used to find the first collision object it intersects. diff --git a/doc/classes/RayCast3D.xml b/doc/classes/RayCast3D.xml index 1040975c9be..cc7c11407e3 100644 --- a/doc/classes/RayCast3D.xml +++ b/doc/classes/RayCast3D.xml @@ -1,5 +1,5 @@ - + A ray in 3D space, used to find the first collision object it intersects. diff --git a/doc/classes/RectangleShape2D.xml b/doc/classes/RectangleShape2D.xml index a62b997a0ad..7379591eb86 100644 --- a/doc/classes/RectangleShape2D.xml +++ b/doc/classes/RectangleShape2D.xml @@ -1,5 +1,5 @@ - + A 2D rectangle shape used for physics collision. diff --git a/doc/classes/RefCounted.xml b/doc/classes/RefCounted.xml index 6811170ab02..654bafe3387 100644 --- a/doc/classes/RefCounted.xml +++ b/doc/classes/RefCounted.xml @@ -1,5 +1,5 @@ - + Base class for reference-counted objects. diff --git a/doc/classes/ReferenceRect.xml b/doc/classes/ReferenceRect.xml index 257bdcad2ce..940a7ec0cf3 100644 --- a/doc/classes/ReferenceRect.xml +++ b/doc/classes/ReferenceRect.xml @@ -1,5 +1,5 @@ - + A rectangular box for designing UIs. diff --git a/doc/classes/ReflectionProbe.xml b/doc/classes/ReflectionProbe.xml index 1bd7dae61cf..123fc3e3258 100644 --- a/doc/classes/ReflectionProbe.xml +++ b/doc/classes/ReflectionProbe.xml @@ -1,5 +1,5 @@ - + Captures its surroundings to create fast, accurate reflections from a given point. diff --git a/doc/classes/RemoteTransform2D.xml b/doc/classes/RemoteTransform2D.xml index d1f0e7cd690..c736da9c2a4 100644 --- a/doc/classes/RemoteTransform2D.xml +++ b/doc/classes/RemoteTransform2D.xml @@ -1,5 +1,5 @@ - + RemoteTransform2D pushes its own [Transform2D] to another [Node2D] derived node in the scene. diff --git a/doc/classes/RemoteTransform3D.xml b/doc/classes/RemoteTransform3D.xml index a89e666d9b5..b12ea8e0ed1 100644 --- a/doc/classes/RemoteTransform3D.xml +++ b/doc/classes/RemoteTransform3D.xml @@ -1,5 +1,5 @@ - + RemoteTransform3D pushes its own [Transform3D] to another [Node3D] derived Node in the scene. diff --git a/doc/classes/RenderData.xml b/doc/classes/RenderData.xml index a0cc56a90b2..bb66cab9dac 100644 --- a/doc/classes/RenderData.xml +++ b/doc/classes/RenderData.xml @@ -1,5 +1,5 @@ - + Abstract render data object, holds frame data related to rendering a single frame of a viewport. diff --git a/doc/classes/RenderDataExtension.xml b/doc/classes/RenderDataExtension.xml index 5c2b75ed1ba..b34aa2f1df1 100644 --- a/doc/classes/RenderDataExtension.xml +++ b/doc/classes/RenderDataExtension.xml @@ -1,5 +1,5 @@ - + This class allows for a RenderData implementation to be made in GDExtension. diff --git a/doc/classes/RenderDataRD.xml b/doc/classes/RenderDataRD.xml index 11d195da3ee..8395440fedf 100644 --- a/doc/classes/RenderDataRD.xml +++ b/doc/classes/RenderDataRD.xml @@ -1,5 +1,5 @@ - + Render data implementation for the RenderingDevice based renderers. diff --git a/doc/classes/RenderSceneBuffers.xml b/doc/classes/RenderSceneBuffers.xml index 8dc09a76ff6..d3a67e34676 100644 --- a/doc/classes/RenderSceneBuffers.xml +++ b/doc/classes/RenderSceneBuffers.xml @@ -1,5 +1,5 @@ - + Abstract scene buffers object, created for each viewport for which 3D rendering is done. diff --git a/doc/classes/RenderSceneBuffersConfiguration.xml b/doc/classes/RenderSceneBuffersConfiguration.xml index b5c37f3288f..6ca8f8e1ea0 100644 --- a/doc/classes/RenderSceneBuffersConfiguration.xml +++ b/doc/classes/RenderSceneBuffersConfiguration.xml @@ -1,5 +1,5 @@ - + Configuration object used to setup a [RenderSceneBuffers] object. diff --git a/doc/classes/RenderSceneBuffersExtension.xml b/doc/classes/RenderSceneBuffersExtension.xml index fa3efbcaa0e..5fb3711e901 100644 --- a/doc/classes/RenderSceneBuffersExtension.xml +++ b/doc/classes/RenderSceneBuffersExtension.xml @@ -1,5 +1,5 @@ - + This class allows for a RenderSceneBuffer implementation to be made in GDExtension. diff --git a/doc/classes/RenderSceneBuffersRD.xml b/doc/classes/RenderSceneBuffersRD.xml index 2cf51910748..1d6ebc88056 100644 --- a/doc/classes/RenderSceneBuffersRD.xml +++ b/doc/classes/RenderSceneBuffersRD.xml @@ -1,5 +1,5 @@ - + Render scene buffer implementation for the RenderingDevice based renderers. diff --git a/doc/classes/RenderSceneData.xml b/doc/classes/RenderSceneData.xml index 57abfeb3226..b412b832e92 100644 --- a/doc/classes/RenderSceneData.xml +++ b/doc/classes/RenderSceneData.xml @@ -1,5 +1,5 @@ - + Abstract render data object, holds scene data related to rendering a single frame of a viewport. diff --git a/doc/classes/RenderSceneDataExtension.xml b/doc/classes/RenderSceneDataExtension.xml index 72eb7fc54dc..a5c067a2e46 100644 --- a/doc/classes/RenderSceneDataExtension.xml +++ b/doc/classes/RenderSceneDataExtension.xml @@ -1,5 +1,5 @@ - + This class allows for a RenderSceneData implementation to be made in GDExtension. diff --git a/doc/classes/RenderSceneDataRD.xml b/doc/classes/RenderSceneDataRD.xml index 28042841e84..f56e231d856 100644 --- a/doc/classes/RenderSceneDataRD.xml +++ b/doc/classes/RenderSceneDataRD.xml @@ -1,5 +1,5 @@ - + Render scene data implementation for the RenderingDevice based renderers. diff --git a/doc/classes/RenderingDevice.xml b/doc/classes/RenderingDevice.xml index b6ec3f8c9d6..62b5d34f053 100644 --- a/doc/classes/RenderingDevice.xml +++ b/doc/classes/RenderingDevice.xml @@ -1,5 +1,5 @@ - + Abstraction for working with modern low-level graphics APIs. diff --git a/doc/classes/RenderingServer.xml b/doc/classes/RenderingServer.xml index 89b9c149b88..bde6a57f6d2 100644 --- a/doc/classes/RenderingServer.xml +++ b/doc/classes/RenderingServer.xml @@ -1,5 +1,5 @@ - + Server for anything visible. diff --git a/doc/classes/Resource.xml b/doc/classes/Resource.xml index 57471d9abe2..e48611cebc3 100644 --- a/doc/classes/Resource.xml +++ b/doc/classes/Resource.xml @@ -1,5 +1,5 @@ - + Base class for serializable objects. diff --git a/doc/classes/ResourceFormatLoader.xml b/doc/classes/ResourceFormatLoader.xml index c6a4d24f82a..4a718e0a2b0 100644 --- a/doc/classes/ResourceFormatLoader.xml +++ b/doc/classes/ResourceFormatLoader.xml @@ -1,5 +1,5 @@ - + Loads a specific resource type from a file. diff --git a/doc/classes/ResourceFormatSaver.xml b/doc/classes/ResourceFormatSaver.xml index ae5a6b57f08..e34c1e58c28 100644 --- a/doc/classes/ResourceFormatSaver.xml +++ b/doc/classes/ResourceFormatSaver.xml @@ -1,5 +1,5 @@ - + Saves a specific resource type to a file. diff --git a/doc/classes/ResourceImporter.xml b/doc/classes/ResourceImporter.xml index ff069a1509c..85907d6bc5f 100644 --- a/doc/classes/ResourceImporter.xml +++ b/doc/classes/ResourceImporter.xml @@ -1,5 +1,5 @@ - + Base class for resource importers. diff --git a/doc/classes/ResourceImporterBMFont.xml b/doc/classes/ResourceImporterBMFont.xml index 321359b60e5..451f69a8686 100644 --- a/doc/classes/ResourceImporterBMFont.xml +++ b/doc/classes/ResourceImporterBMFont.xml @@ -1,5 +1,5 @@ - + Imports a bitmap font in the BMFont ([code].fnt[/code]) format. diff --git a/doc/classes/ResourceImporterBitMap.xml b/doc/classes/ResourceImporterBitMap.xml index e54947ebb66..66b03e902ce 100644 --- a/doc/classes/ResourceImporterBitMap.xml +++ b/doc/classes/ResourceImporterBitMap.xml @@ -1,5 +1,5 @@ - + Imports a [BitMap] resource (2D array of boolean values). diff --git a/doc/classes/ResourceImporterCSVTranslation.xml b/doc/classes/ResourceImporterCSVTranslation.xml index 331379fdeda..a49f62b2c17 100644 --- a/doc/classes/ResourceImporterCSVTranslation.xml +++ b/doc/classes/ResourceImporterCSVTranslation.xml @@ -1,5 +1,5 @@ - + Imports comma-separated values as [Translation]s. diff --git a/doc/classes/ResourceImporterDynamicFont.xml b/doc/classes/ResourceImporterDynamicFont.xml index 14b15af34e8..9ab7b63e5f1 100644 --- a/doc/classes/ResourceImporterDynamicFont.xml +++ b/doc/classes/ResourceImporterDynamicFont.xml @@ -1,5 +1,5 @@ - + Imports a TTF, TTC, OTF, OTC, WOFF or WOFF2 font file for font rendering that adapts to any size. diff --git a/doc/classes/ResourceImporterImage.xml b/doc/classes/ResourceImporterImage.xml index eb7219cc2e2..495f3834908 100644 --- a/doc/classes/ResourceImporterImage.xml +++ b/doc/classes/ResourceImporterImage.xml @@ -1,5 +1,5 @@ - + Imports an image for use in scripting, with no rendering capabilities. diff --git a/doc/classes/ResourceImporterImageFont.xml b/doc/classes/ResourceImporterImageFont.xml index 199e79b6afe..32d95ba0ddb 100644 --- a/doc/classes/ResourceImporterImageFont.xml +++ b/doc/classes/ResourceImporterImageFont.xml @@ -1,5 +1,5 @@ - + Imports a bitmap font where all glyphs have the same width and height. diff --git a/doc/classes/ResourceImporterLayeredTexture.xml b/doc/classes/ResourceImporterLayeredTexture.xml index fa59a24633d..d4938ecc9fc 100644 --- a/doc/classes/ResourceImporterLayeredTexture.xml +++ b/doc/classes/ResourceImporterLayeredTexture.xml @@ -1,5 +1,5 @@ - + Imports a 3-dimensional texture ([Texture3D]), a [Texture2DArray], a [Cubemap] or a [CubemapArray]. diff --git a/doc/classes/ResourceImporterOBJ.xml b/doc/classes/ResourceImporterOBJ.xml index 084638f62b1..bc845cb34b4 100644 --- a/doc/classes/ResourceImporterOBJ.xml +++ b/doc/classes/ResourceImporterOBJ.xml @@ -1,5 +1,5 @@ - + Imports an OBJ 3D model as an independent [Mesh] or scene. diff --git a/doc/classes/ResourceImporterSVG.xml b/doc/classes/ResourceImporterSVG.xml index b91c1aae70e..86c7ad9b2f7 100644 --- a/doc/classes/ResourceImporterSVG.xml +++ b/doc/classes/ResourceImporterSVG.xml @@ -1,5 +1,5 @@ - + Imports an SVG file as an automatically scalable texture for use in UI elements and 2D rendering. diff --git a/doc/classes/ResourceImporterScene.xml b/doc/classes/ResourceImporterScene.xml index 4364cdc2206..517df87173b 100644 --- a/doc/classes/ResourceImporterScene.xml +++ b/doc/classes/ResourceImporterScene.xml @@ -1,5 +1,5 @@ - + Imports a glTF, FBX, COLLADA, or Blender 3D scene. diff --git a/doc/classes/ResourceImporterShaderFile.xml b/doc/classes/ResourceImporterShaderFile.xml index 35f2ebc3e2b..a4354b3aa0e 100644 --- a/doc/classes/ResourceImporterShaderFile.xml +++ b/doc/classes/ResourceImporterShaderFile.xml @@ -1,5 +1,5 @@ - + Imports native GLSL shaders (not Godot shaders) as an [RDShaderFile]. diff --git a/doc/classes/ResourceImporterTexture.xml b/doc/classes/ResourceImporterTexture.xml index 55feff48474..d9b5dc34043 100644 --- a/doc/classes/ResourceImporterTexture.xml +++ b/doc/classes/ResourceImporterTexture.xml @@ -1,5 +1,5 @@ - + Imports an image for use in 2D or 3D rendering. diff --git a/doc/classes/ResourceImporterTextureAtlas.xml b/doc/classes/ResourceImporterTextureAtlas.xml index b4890218e07..f65eb5bb267 100644 --- a/doc/classes/ResourceImporterTextureAtlas.xml +++ b/doc/classes/ResourceImporterTextureAtlas.xml @@ -1,5 +1,5 @@ - + Imports a collection of textures from a PNG image into an optimized [AtlasTexture] for 2D rendering. diff --git a/doc/classes/ResourceImporterWAV.xml b/doc/classes/ResourceImporterWAV.xml index 3caa66d262f..cd57fd657f7 100644 --- a/doc/classes/ResourceImporterWAV.xml +++ b/doc/classes/ResourceImporterWAV.xml @@ -1,5 +1,5 @@ - + Imports a WAV audio file for playback. diff --git a/doc/classes/ResourceLoader.xml b/doc/classes/ResourceLoader.xml index 9444caf44a5..c3f9de48bce 100644 --- a/doc/classes/ResourceLoader.xml +++ b/doc/classes/ResourceLoader.xml @@ -1,5 +1,5 @@ - + A singleton for loading resource files. diff --git a/doc/classes/ResourcePreloader.xml b/doc/classes/ResourcePreloader.xml index 2d4dcf09af7..b9673f736be 100644 --- a/doc/classes/ResourcePreloader.xml +++ b/doc/classes/ResourcePreloader.xml @@ -1,5 +1,5 @@ - + A node used to preload sub-resources inside a scene. diff --git a/doc/classes/ResourceSaver.xml b/doc/classes/ResourceSaver.xml index 35e9fc14d0e..c65e4e20d3c 100644 --- a/doc/classes/ResourceSaver.xml +++ b/doc/classes/ResourceSaver.xml @@ -1,5 +1,5 @@ - + A singleton for saving [Resource]s to the filesystem. diff --git a/doc/classes/ResourceUID.xml b/doc/classes/ResourceUID.xml index 0838fc1e353..c5f8a4777c2 100644 --- a/doc/classes/ResourceUID.xml +++ b/doc/classes/ResourceUID.xml @@ -1,5 +1,5 @@ - + A singleton that manages the unique identifiers of all resources within a project. diff --git a/doc/classes/RetargetModifier3D.xml b/doc/classes/RetargetModifier3D.xml index 7f89b66a83b..cc6e15a60b0 100644 --- a/doc/classes/RetargetModifier3D.xml +++ b/doc/classes/RetargetModifier3D.xml @@ -1,5 +1,5 @@ - + A modifier to transfer parent skeleton poses (or global poses) to child skeletons in model space with different rests. diff --git a/doc/classes/RibbonTrailMesh.xml b/doc/classes/RibbonTrailMesh.xml index 113787d3a4e..adcd0708892 100644 --- a/doc/classes/RibbonTrailMesh.xml +++ b/doc/classes/RibbonTrailMesh.xml @@ -1,5 +1,5 @@ - + Represents a straight ribbon-shaped [PrimitiveMesh] with variable width. diff --git a/doc/classes/RichTextEffect.xml b/doc/classes/RichTextEffect.xml index 774fa2bf9c4..40517e3d28c 100644 --- a/doc/classes/RichTextEffect.xml +++ b/doc/classes/RichTextEffect.xml @@ -1,5 +1,5 @@ - + A custom effect for a [RichTextLabel]. diff --git a/doc/classes/RichTextLabel.xml b/doc/classes/RichTextLabel.xml index 48ba7a559d7..1765a0cb3a6 100644 --- a/doc/classes/RichTextLabel.xml +++ b/doc/classes/RichTextLabel.xml @@ -1,5 +1,5 @@ - + A control for displaying text that can contain different font styles, images, and basic formatting. diff --git a/doc/classes/RigidBody2D.xml b/doc/classes/RigidBody2D.xml index d2987eeeb69..843fe5ae707 100644 --- a/doc/classes/RigidBody2D.xml +++ b/doc/classes/RigidBody2D.xml @@ -1,5 +1,5 @@ - + A 2D physics body that is moved by a physics simulation. diff --git a/doc/classes/RigidBody3D.xml b/doc/classes/RigidBody3D.xml index 4f27d22dec8..0935c992557 100644 --- a/doc/classes/RigidBody3D.xml +++ b/doc/classes/RigidBody3D.xml @@ -1,5 +1,5 @@ - + A 3D physics body that is moved by a physics simulation. diff --git a/doc/classes/RootMotionView.xml b/doc/classes/RootMotionView.xml index d7fbb2d80dc..2cfb26ce13c 100644 --- a/doc/classes/RootMotionView.xml +++ b/doc/classes/RootMotionView.xml @@ -1,5 +1,5 @@ - + Editor-only helper for setting up root motion in [AnimationMixer]. diff --git a/doc/classes/SceneState.xml b/doc/classes/SceneState.xml index e7dfc65e684..2e25302ad47 100644 --- a/doc/classes/SceneState.xml +++ b/doc/classes/SceneState.xml @@ -1,5 +1,5 @@ - + Provides access to a scene file's information. diff --git a/doc/classes/SceneTree.xml b/doc/classes/SceneTree.xml index 2a653084fc5..4ef591aec77 100644 --- a/doc/classes/SceneTree.xml +++ b/doc/classes/SceneTree.xml @@ -1,5 +1,5 @@ - + Manages the game loop via a hierarchy of nodes. diff --git a/doc/classes/SceneTreeTimer.xml b/doc/classes/SceneTreeTimer.xml index bae027932b3..30a91eceeaf 100644 --- a/doc/classes/SceneTreeTimer.xml +++ b/doc/classes/SceneTreeTimer.xml @@ -1,5 +1,5 @@ - + One-shot timer. diff --git a/doc/classes/Script.xml b/doc/classes/Script.xml index 5b73668fbff..307e8572e9f 100644 --- a/doc/classes/Script.xml +++ b/doc/classes/Script.xml @@ -1,5 +1,5 @@ - + A class stored as a resource. diff --git a/doc/classes/ScriptBacktrace.xml b/doc/classes/ScriptBacktrace.xml index ad4aa7ccf27..ac98552b3ac 100644 --- a/doc/classes/ScriptBacktrace.xml +++ b/doc/classes/ScriptBacktrace.xml @@ -1,5 +1,5 @@ - + A captured backtrace of a specific script language. diff --git a/doc/classes/ScriptCreateDialog.xml b/doc/classes/ScriptCreateDialog.xml index 1a13c325cfe..f20f5fd715e 100644 --- a/doc/classes/ScriptCreateDialog.xml +++ b/doc/classes/ScriptCreateDialog.xml @@ -1,5 +1,5 @@ - + Godot editor's popup dialog for creating new [Script] files. diff --git a/doc/classes/ScriptEditor.xml b/doc/classes/ScriptEditor.xml index 3ebfa622bff..678c1270c56 100644 --- a/doc/classes/ScriptEditor.xml +++ b/doc/classes/ScriptEditor.xml @@ -1,5 +1,5 @@ - + Godot editor's script editor. diff --git a/doc/classes/ScriptEditorBase.xml b/doc/classes/ScriptEditorBase.xml index 1b0084d68b2..50ee8110c04 100644 --- a/doc/classes/ScriptEditorBase.xml +++ b/doc/classes/ScriptEditorBase.xml @@ -1,5 +1,5 @@ - + Base editor for editing scripts in the [ScriptEditor]. diff --git a/doc/classes/ScriptExtension.xml b/doc/classes/ScriptExtension.xml index a9a1d7046a6..9b7149aaf61 100644 --- a/doc/classes/ScriptExtension.xml +++ b/doc/classes/ScriptExtension.xml @@ -1,5 +1,5 @@ - + diff --git a/doc/classes/ScriptLanguage.xml b/doc/classes/ScriptLanguage.xml index 30ee98e67a0..4997e93300c 100644 --- a/doc/classes/ScriptLanguage.xml +++ b/doc/classes/ScriptLanguage.xml @@ -1,5 +1,5 @@ - + diff --git a/doc/classes/ScriptLanguageExtension.xml b/doc/classes/ScriptLanguageExtension.xml index 78f2ef7a6c5..e665c598e6c 100644 --- a/doc/classes/ScriptLanguageExtension.xml +++ b/doc/classes/ScriptLanguageExtension.xml @@ -1,5 +1,5 @@ - + diff --git a/doc/classes/ScrollBar.xml b/doc/classes/ScrollBar.xml index d9f0217638a..b67285979f3 100644 --- a/doc/classes/ScrollBar.xml +++ b/doc/classes/ScrollBar.xml @@ -1,5 +1,5 @@ - + Abstract base class for scrollbars. diff --git a/doc/classes/ScrollContainer.xml b/doc/classes/ScrollContainer.xml index 515cf300d8e..df90ed69064 100644 --- a/doc/classes/ScrollContainer.xml +++ b/doc/classes/ScrollContainer.xml @@ -1,5 +1,5 @@ - + A container used to provide scrollbars to a child control when needed. diff --git a/doc/classes/SegmentShape2D.xml b/doc/classes/SegmentShape2D.xml index 51c9f3b448b..c824586b7ba 100644 --- a/doc/classes/SegmentShape2D.xml +++ b/doc/classes/SegmentShape2D.xml @@ -1,5 +1,5 @@ - + A 2D line segment shape used for physics collision. diff --git a/doc/classes/Semaphore.xml b/doc/classes/Semaphore.xml index 3ecb5c23afb..9c9707b3bb4 100644 --- a/doc/classes/Semaphore.xml +++ b/doc/classes/Semaphore.xml @@ -1,5 +1,5 @@ - + A synchronization mechanism used to control access to a shared resource by [Thread]s. diff --git a/doc/classes/SeparationRayShape2D.xml b/doc/classes/SeparationRayShape2D.xml index 9c805d4ede4..538c0b8f086 100644 --- a/doc/classes/SeparationRayShape2D.xml +++ b/doc/classes/SeparationRayShape2D.xml @@ -1,5 +1,5 @@ - + A 2D ray shape used for physics collision that tries to separate itself from any collider. diff --git a/doc/classes/SeparationRayShape3D.xml b/doc/classes/SeparationRayShape3D.xml index afb030ad0e5..82daa165d2f 100644 --- a/doc/classes/SeparationRayShape3D.xml +++ b/doc/classes/SeparationRayShape3D.xml @@ -1,5 +1,5 @@ - + A 3D ray shape used for physics collision that tries to separate itself from any collider. diff --git a/doc/classes/Separator.xml b/doc/classes/Separator.xml index d0535d450ff..ce6453f14fe 100644 --- a/doc/classes/Separator.xml +++ b/doc/classes/Separator.xml @@ -1,5 +1,5 @@ - + Abstract base class for separators. diff --git a/doc/classes/Shader.xml b/doc/classes/Shader.xml index dc341cd03c2..6011b81499c 100644 --- a/doc/classes/Shader.xml +++ b/doc/classes/Shader.xml @@ -1,5 +1,5 @@ - + A shader implemented in the Godot shading language. diff --git a/doc/classes/ShaderGlobalsOverride.xml b/doc/classes/ShaderGlobalsOverride.xml index c5fe2a3e8ab..894df5be0b4 100644 --- a/doc/classes/ShaderGlobalsOverride.xml +++ b/doc/classes/ShaderGlobalsOverride.xml @@ -1,5 +1,5 @@ - + A node used to override global shader parameters' values in a scene. diff --git a/doc/classes/ShaderInclude.xml b/doc/classes/ShaderInclude.xml index ec9f1459b26..aa8f2187d5c 100644 --- a/doc/classes/ShaderInclude.xml +++ b/doc/classes/ShaderInclude.xml @@ -1,5 +1,5 @@ - + A snippet of shader code to be included in a [Shader] with [code]#include[/code]. diff --git a/doc/classes/ShaderIncludeDB.xml b/doc/classes/ShaderIncludeDB.xml index a431eabf4e8..893bcd4ee51 100644 --- a/doc/classes/ShaderIncludeDB.xml +++ b/doc/classes/ShaderIncludeDB.xml @@ -1,5 +1,5 @@ - + Internal database of built in shader include files. diff --git a/doc/classes/ShaderMaterial.xml b/doc/classes/ShaderMaterial.xml index 9cff6e34ea5..6ab9b9a52ac 100644 --- a/doc/classes/ShaderMaterial.xml +++ b/doc/classes/ShaderMaterial.xml @@ -1,5 +1,5 @@ - + A material defined by a custom [Shader] program and the values of its shader parameters. diff --git a/doc/classes/Shape2D.xml b/doc/classes/Shape2D.xml index 07c014f223e..1dd96c89d6c 100644 --- a/doc/classes/Shape2D.xml +++ b/doc/classes/Shape2D.xml @@ -1,5 +1,5 @@ - + Abstract base class for 2D shapes used for physics collision. diff --git a/doc/classes/Shape3D.xml b/doc/classes/Shape3D.xml index 185c0930fda..c757fca1ff9 100644 --- a/doc/classes/Shape3D.xml +++ b/doc/classes/Shape3D.xml @@ -1,5 +1,5 @@ - + Abstract base class for 3D shapes used for physics collision. diff --git a/doc/classes/ShapeCast2D.xml b/doc/classes/ShapeCast2D.xml index 6f5da28825c..b8e25e495be 100644 --- a/doc/classes/ShapeCast2D.xml +++ b/doc/classes/ShapeCast2D.xml @@ -1,5 +1,5 @@ - + A 2D shape that sweeps a region of space to detect [CollisionObject2D]s. diff --git a/doc/classes/ShapeCast3D.xml b/doc/classes/ShapeCast3D.xml index ba0b021b4d9..fc8b8de5155 100644 --- a/doc/classes/ShapeCast3D.xml +++ b/doc/classes/ShapeCast3D.xml @@ -1,5 +1,5 @@ - + A 3D shape that sweeps a region of space to detect [CollisionObject3D]s. diff --git a/doc/classes/Shortcut.xml b/doc/classes/Shortcut.xml index 3aa77f6f989..a64e308d5f0 100644 --- a/doc/classes/Shortcut.xml +++ b/doc/classes/Shortcut.xml @@ -1,5 +1,5 @@ - + A shortcut for binding input. diff --git a/doc/classes/Skeleton2D.xml b/doc/classes/Skeleton2D.xml index 7ff55dfcc53..549f4402ccd 100644 --- a/doc/classes/Skeleton2D.xml +++ b/doc/classes/Skeleton2D.xml @@ -1,5 +1,5 @@ - + The parent of a hierarchy of [Bone2D]s, used to create a 2D skeletal animation. diff --git a/doc/classes/Skeleton3D.xml b/doc/classes/Skeleton3D.xml index fecfc0a039e..c6c8754455e 100644 --- a/doc/classes/Skeleton3D.xml +++ b/doc/classes/Skeleton3D.xml @@ -1,5 +1,5 @@ - + A node containing a bone hierarchy, used to create a 3D skeletal animation. diff --git a/doc/classes/SkeletonIK3D.xml b/doc/classes/SkeletonIK3D.xml index dbb099a22b5..68f9f88f388 100644 --- a/doc/classes/SkeletonIK3D.xml +++ b/doc/classes/SkeletonIK3D.xml @@ -1,5 +1,5 @@ - + A node used to rotate all bones of a [Skeleton3D] bone chain a way that places the end bone at a desired 3D position. diff --git a/doc/classes/SkeletonModification2D.xml b/doc/classes/SkeletonModification2D.xml index c09e63be85f..80f2cf14e14 100644 --- a/doc/classes/SkeletonModification2D.xml +++ b/doc/classes/SkeletonModification2D.xml @@ -1,5 +1,5 @@ - + Base class for resources that operate on [Bone2D]s in a [Skeleton2D]. diff --git a/doc/classes/SkeletonModification2DCCDIK.xml b/doc/classes/SkeletonModification2DCCDIK.xml index e20cbd89605..ba89e4e26f7 100644 --- a/doc/classes/SkeletonModification2DCCDIK.xml +++ b/doc/classes/SkeletonModification2DCCDIK.xml @@ -1,5 +1,5 @@ - + A modification that uses CCDIK to manipulate a series of bones to reach a target in 2D. diff --git a/doc/classes/SkeletonModification2DFABRIK.xml b/doc/classes/SkeletonModification2DFABRIK.xml index e4aee899e10..3d395b92c2a 100644 --- a/doc/classes/SkeletonModification2DFABRIK.xml +++ b/doc/classes/SkeletonModification2DFABRIK.xml @@ -1,5 +1,5 @@ - + A modification that uses FABRIK to manipulate a series of [Bone2D] nodes to reach a target. diff --git a/doc/classes/SkeletonModification2DJiggle.xml b/doc/classes/SkeletonModification2DJiggle.xml index 4a09806b82e..ed6b9a97dc7 100644 --- a/doc/classes/SkeletonModification2DJiggle.xml +++ b/doc/classes/SkeletonModification2DJiggle.xml @@ -1,5 +1,5 @@ - + A modification that jiggles [Bone2D] nodes as they move towards a target. diff --git a/doc/classes/SkeletonModification2DLookAt.xml b/doc/classes/SkeletonModification2DLookAt.xml index 232104f6acf..4bfda1de777 100644 --- a/doc/classes/SkeletonModification2DLookAt.xml +++ b/doc/classes/SkeletonModification2DLookAt.xml @@ -1,5 +1,5 @@ - + A modification that rotates a [Bone2D] node to look at a target. diff --git a/doc/classes/SkeletonModification2DPhysicalBones.xml b/doc/classes/SkeletonModification2DPhysicalBones.xml index af9e982f6af..6741ffa9a75 100644 --- a/doc/classes/SkeletonModification2DPhysicalBones.xml +++ b/doc/classes/SkeletonModification2DPhysicalBones.xml @@ -1,5 +1,5 @@ - + A modification that applies the transforms of [PhysicalBone2D] nodes to [Bone2D] nodes. diff --git a/doc/classes/SkeletonModification2DStackHolder.xml b/doc/classes/SkeletonModification2DStackHolder.xml index 5b9f6f270ac..05eeb6b3f7b 100644 --- a/doc/classes/SkeletonModification2DStackHolder.xml +++ b/doc/classes/SkeletonModification2DStackHolder.xml @@ -1,5 +1,5 @@ - + A modification that holds and executes a [SkeletonModificationStack2D]. diff --git a/doc/classes/SkeletonModification2DTwoBoneIK.xml b/doc/classes/SkeletonModification2DTwoBoneIK.xml index d2417ba7bf9..6438e9cff20 100644 --- a/doc/classes/SkeletonModification2DTwoBoneIK.xml +++ b/doc/classes/SkeletonModification2DTwoBoneIK.xml @@ -1,5 +1,5 @@ - + A modification that rotates two bones using the law of cosines to reach the target. diff --git a/doc/classes/SkeletonModificationStack2D.xml b/doc/classes/SkeletonModificationStack2D.xml index a006f727eed..0af1084cdc6 100644 --- a/doc/classes/SkeletonModificationStack2D.xml +++ b/doc/classes/SkeletonModificationStack2D.xml @@ -1,5 +1,5 @@ - + A resource that holds a stack of [SkeletonModification2D]s. diff --git a/doc/classes/SkeletonModifier3D.xml b/doc/classes/SkeletonModifier3D.xml index 03a8bf6bffd..2de54c168dd 100644 --- a/doc/classes/SkeletonModifier3D.xml +++ b/doc/classes/SkeletonModifier3D.xml @@ -1,5 +1,5 @@ - + A node that may modify a Skeleton3D's bones. diff --git a/doc/classes/SkeletonProfile.xml b/doc/classes/SkeletonProfile.xml index b5bb4e36390..d18d2e171ef 100644 --- a/doc/classes/SkeletonProfile.xml +++ b/doc/classes/SkeletonProfile.xml @@ -1,5 +1,5 @@ - + Base class for a profile of a virtual skeleton used as a target for retargeting. diff --git a/doc/classes/SkeletonProfileHumanoid.xml b/doc/classes/SkeletonProfileHumanoid.xml index 575bf87d078..051a753164b 100644 --- a/doc/classes/SkeletonProfileHumanoid.xml +++ b/doc/classes/SkeletonProfileHumanoid.xml @@ -1,5 +1,5 @@ - + A humanoid [SkeletonProfile] preset. diff --git a/doc/classes/Skin.xml b/doc/classes/Skin.xml index 0e801de8d58..cb4a766b54a 100644 --- a/doc/classes/Skin.xml +++ b/doc/classes/Skin.xml @@ -1,5 +1,5 @@ - + diff --git a/doc/classes/SkinReference.xml b/doc/classes/SkinReference.xml index cb0c44cefaf..cb5fce6014b 100644 --- a/doc/classes/SkinReference.xml +++ b/doc/classes/SkinReference.xml @@ -1,5 +1,5 @@ - + A reference-counted holder object for a skeleton RID used in the [RenderingServer]. diff --git a/doc/classes/Sky.xml b/doc/classes/Sky.xml index 3d657261fa1..350d231f0d3 100644 --- a/doc/classes/Sky.xml +++ b/doc/classes/Sky.xml @@ -1,5 +1,5 @@ - + Defines a 3D environment's background by using a [Material]. diff --git a/doc/classes/Slider.xml b/doc/classes/Slider.xml index 1545c612d0b..f63c0d367f5 100644 --- a/doc/classes/Slider.xml +++ b/doc/classes/Slider.xml @@ -1,5 +1,5 @@ - + Abstract base class for sliders. diff --git a/doc/classes/SliderJoint3D.xml b/doc/classes/SliderJoint3D.xml index 1ed86cb9143..b7d342e6bb7 100644 --- a/doc/classes/SliderJoint3D.xml +++ b/doc/classes/SliderJoint3D.xml @@ -1,5 +1,5 @@ - + A physics joint that restricts the movement of a 3D physics body along an axis relative to another physics body. diff --git a/doc/classes/SocketServer.xml b/doc/classes/SocketServer.xml index 2142cee8801..154a9909169 100644 --- a/doc/classes/SocketServer.xml +++ b/doc/classes/SocketServer.xml @@ -1,5 +1,5 @@ - + An abstract class for servers based on sockets. diff --git a/doc/classes/SoftBody3D.xml b/doc/classes/SoftBody3D.xml index 75834c3052d..33561b2844b 100644 --- a/doc/classes/SoftBody3D.xml +++ b/doc/classes/SoftBody3D.xml @@ -1,5 +1,5 @@ - + A deformable 3D physics mesh. diff --git a/doc/classes/SphereMesh.xml b/doc/classes/SphereMesh.xml index 8f815bebbfe..df8a69fbad1 100644 --- a/doc/classes/SphereMesh.xml +++ b/doc/classes/SphereMesh.xml @@ -1,5 +1,5 @@ - + Class representing a spherical [PrimitiveMesh]. diff --git a/doc/classes/SphereOccluder3D.xml b/doc/classes/SphereOccluder3D.xml index bda8f4c978c..fdd006ac606 100644 --- a/doc/classes/SphereOccluder3D.xml +++ b/doc/classes/SphereOccluder3D.xml @@ -1,5 +1,5 @@ - + Spherical shape for use with occlusion culling in [OccluderInstance3D]. diff --git a/doc/classes/SphereShape3D.xml b/doc/classes/SphereShape3D.xml index 4b14c535ddf..0ca8039cde5 100644 --- a/doc/classes/SphereShape3D.xml +++ b/doc/classes/SphereShape3D.xml @@ -1,5 +1,5 @@ - + A 3D sphere shape used for physics collision. diff --git a/doc/classes/SpinBox.xml b/doc/classes/SpinBox.xml index 30bbd3ee9b7..3e39e9eba94 100644 --- a/doc/classes/SpinBox.xml +++ b/doc/classes/SpinBox.xml @@ -1,5 +1,5 @@ - + An input field for numbers. diff --git a/doc/classes/SplineIK3D.xml b/doc/classes/SplineIK3D.xml index c508a51966f..a67a2be42f6 100644 --- a/doc/classes/SplineIK3D.xml +++ b/doc/classes/SplineIK3D.xml @@ -1,5 +1,5 @@ - + A [SkeletonModifier3D] for aligning bones along a [Path3D]. diff --git a/doc/classes/SplitContainer.xml b/doc/classes/SplitContainer.xml index 485ffce01b3..c1d26f7be0f 100644 --- a/doc/classes/SplitContainer.xml +++ b/doc/classes/SplitContainer.xml @@ -1,5 +1,5 @@ - + A container that arranges child controls horizontally or vertically and provides grabbers for adjusting the split ratios between them. diff --git a/doc/classes/SpotLight3D.xml b/doc/classes/SpotLight3D.xml index 30056b994cd..81d47e37f0c 100644 --- a/doc/classes/SpotLight3D.xml +++ b/doc/classes/SpotLight3D.xml @@ -1,5 +1,5 @@ - + A spotlight, such as a reflector spotlight or a lantern. diff --git a/doc/classes/SpringArm3D.xml b/doc/classes/SpringArm3D.xml index 891e80b2d87..ba4e4451646 100644 --- a/doc/classes/SpringArm3D.xml +++ b/doc/classes/SpringArm3D.xml @@ -1,5 +1,5 @@ - + A 3D raycast that dynamically moves its children near the collision point. diff --git a/doc/classes/SpringBoneCollision3D.xml b/doc/classes/SpringBoneCollision3D.xml index 85738b66971..e99807ba4a9 100644 --- a/doc/classes/SpringBoneCollision3D.xml +++ b/doc/classes/SpringBoneCollision3D.xml @@ -1,5 +1,5 @@ - + A base class of the collision that interacts with [SpringBoneSimulator3D]. diff --git a/doc/classes/SpringBoneCollisionCapsule3D.xml b/doc/classes/SpringBoneCollisionCapsule3D.xml index b48f8d3cc1d..b45049e58cd 100644 --- a/doc/classes/SpringBoneCollisionCapsule3D.xml +++ b/doc/classes/SpringBoneCollisionCapsule3D.xml @@ -1,5 +1,5 @@ - + A capsule shape collision that interacts with [SpringBoneSimulator3D]. diff --git a/doc/classes/SpringBoneCollisionPlane3D.xml b/doc/classes/SpringBoneCollisionPlane3D.xml index 6a6507ff3f1..83a92b32196 100644 --- a/doc/classes/SpringBoneCollisionPlane3D.xml +++ b/doc/classes/SpringBoneCollisionPlane3D.xml @@ -1,5 +1,5 @@ - + An infinite plane collision that interacts with [SpringBoneSimulator3D]. diff --git a/doc/classes/SpringBoneCollisionSphere3D.xml b/doc/classes/SpringBoneCollisionSphere3D.xml index 3ccb42a93e9..52f5e3a5360 100644 --- a/doc/classes/SpringBoneCollisionSphere3D.xml +++ b/doc/classes/SpringBoneCollisionSphere3D.xml @@ -1,5 +1,5 @@ - + A sphere shape collision that interacts with [SpringBoneSimulator3D]. diff --git a/doc/classes/SpringBoneSimulator3D.xml b/doc/classes/SpringBoneSimulator3D.xml index dd9358b404f..2c7b3b07ded 100644 --- a/doc/classes/SpringBoneSimulator3D.xml +++ b/doc/classes/SpringBoneSimulator3D.xml @@ -1,5 +1,5 @@ - + A [SkeletonModifier3D] to apply inertial wavering to bone chains. diff --git a/doc/classes/Sprite2D.xml b/doc/classes/Sprite2D.xml index 482965e3d77..f722c6a2c34 100644 --- a/doc/classes/Sprite2D.xml +++ b/doc/classes/Sprite2D.xml @@ -1,5 +1,5 @@ - + General-purpose sprite node. diff --git a/doc/classes/Sprite3D.xml b/doc/classes/Sprite3D.xml index 4b4421aeba7..24a5d107491 100644 --- a/doc/classes/Sprite3D.xml +++ b/doc/classes/Sprite3D.xml @@ -1,5 +1,5 @@ - + 2D sprite node in a 3D world. diff --git a/doc/classes/SpriteBase3D.xml b/doc/classes/SpriteBase3D.xml index c473a626cae..c02226db97d 100644 --- a/doc/classes/SpriteBase3D.xml +++ b/doc/classes/SpriteBase3D.xml @@ -1,5 +1,5 @@ - + 2D sprite node in 3D environment. diff --git a/doc/classes/SpriteFrames.xml b/doc/classes/SpriteFrames.xml index b891f4adcd7..b32be8f88de 100644 --- a/doc/classes/SpriteFrames.xml +++ b/doc/classes/SpriteFrames.xml @@ -1,5 +1,5 @@ - + Sprite frame library for AnimatedSprite2D and AnimatedSprite3D. diff --git a/doc/classes/StandardMaterial3D.xml b/doc/classes/StandardMaterial3D.xml index 55247678cbb..be820b6216a 100644 --- a/doc/classes/StandardMaterial3D.xml +++ b/doc/classes/StandardMaterial3D.xml @@ -1,5 +1,5 @@ - + A PBR (Physically Based Rendering) material to be used on 3D objects. diff --git a/doc/classes/StaticBody2D.xml b/doc/classes/StaticBody2D.xml index d94ead0f71f..7f3b122abdd 100644 --- a/doc/classes/StaticBody2D.xml +++ b/doc/classes/StaticBody2D.xml @@ -1,5 +1,5 @@ - + A 2D physics body that can't be moved by external forces. When moved manually, it doesn't affect other bodies in its path. diff --git a/doc/classes/StaticBody3D.xml b/doc/classes/StaticBody3D.xml index bb61e6e4fb7..0e0e7b58fdf 100644 --- a/doc/classes/StaticBody3D.xml +++ b/doc/classes/StaticBody3D.xml @@ -1,5 +1,5 @@ - + A 3D physics body that can't be moved by external forces. When moved manually, it doesn't affect other bodies in its path. diff --git a/doc/classes/StatusIndicator.xml b/doc/classes/StatusIndicator.xml index 688840b17f8..360febc1054 100644 --- a/doc/classes/StatusIndicator.xml +++ b/doc/classes/StatusIndicator.xml @@ -1,5 +1,5 @@ - + Application status indicator (aka notification area icon). [b]Note:[/b] Status indicator is implemented on macOS and Windows. diff --git a/doc/classes/StreamPeer.xml b/doc/classes/StreamPeer.xml index c887c37dc2c..8935d587a2d 100644 --- a/doc/classes/StreamPeer.xml +++ b/doc/classes/StreamPeer.xml @@ -1,5 +1,5 @@ - + Abstract base class for interacting with streams. diff --git a/doc/classes/StreamPeerBuffer.xml b/doc/classes/StreamPeerBuffer.xml index 3fd0642b184..6a3bfaa60b0 100644 --- a/doc/classes/StreamPeerBuffer.xml +++ b/doc/classes/StreamPeerBuffer.xml @@ -1,5 +1,5 @@ - + A stream peer used to handle binary data streams. diff --git a/doc/classes/StreamPeerExtension.xml b/doc/classes/StreamPeerExtension.xml index 05c967ee0b2..2772ba7525e 100644 --- a/doc/classes/StreamPeerExtension.xml +++ b/doc/classes/StreamPeerExtension.xml @@ -1,5 +1,5 @@ - + diff --git a/doc/classes/StreamPeerGZIP.xml b/doc/classes/StreamPeerGZIP.xml index 01ca7d9077c..c8f03d7d576 100644 --- a/doc/classes/StreamPeerGZIP.xml +++ b/doc/classes/StreamPeerGZIP.xml @@ -1,5 +1,5 @@ - + A stream peer that handles GZIP and deflate compression/decompression. diff --git a/doc/classes/StreamPeerSocket.xml b/doc/classes/StreamPeerSocket.xml index 5fb592788d5..e2485446d0b 100644 --- a/doc/classes/StreamPeerSocket.xml +++ b/doc/classes/StreamPeerSocket.xml @@ -1,5 +1,5 @@ - + Abstract base class for interacting with socket streams. diff --git a/doc/classes/StreamPeerTCP.xml b/doc/classes/StreamPeerTCP.xml index 2199d06b2bf..5a0e69bd2d6 100644 --- a/doc/classes/StreamPeerTCP.xml +++ b/doc/classes/StreamPeerTCP.xml @@ -1,5 +1,5 @@ - + A stream peer that handles TCP connections. diff --git a/doc/classes/StreamPeerTLS.xml b/doc/classes/StreamPeerTLS.xml index 8f19ca4dbf3..66d9029161d 100644 --- a/doc/classes/StreamPeerTLS.xml +++ b/doc/classes/StreamPeerTLS.xml @@ -1,5 +1,5 @@ - + A stream peer that handles TLS connections. diff --git a/doc/classes/StreamPeerUDS.xml b/doc/classes/StreamPeerUDS.xml index cb606341b5a..63ab84b9acc 100644 --- a/doc/classes/StreamPeerUDS.xml +++ b/doc/classes/StreamPeerUDS.xml @@ -1,5 +1,5 @@ - + A stream peer that handles UNIX Domain Socket (UDS) connections. diff --git a/doc/classes/StyleBox.xml b/doc/classes/StyleBox.xml index 07a31336494..83c1e80682d 100644 --- a/doc/classes/StyleBox.xml +++ b/doc/classes/StyleBox.xml @@ -1,5 +1,5 @@ - + Abstract base class for defining stylized boxes for UI elements. diff --git a/doc/classes/StyleBoxEmpty.xml b/doc/classes/StyleBoxEmpty.xml index bd04ca56f64..fad4ff026a3 100644 --- a/doc/classes/StyleBoxEmpty.xml +++ b/doc/classes/StyleBoxEmpty.xml @@ -1,5 +1,5 @@ - + An empty [StyleBox] (does not display anything). diff --git a/doc/classes/StyleBoxFlat.xml b/doc/classes/StyleBoxFlat.xml index cf09043bbb4..8c484f22632 100644 --- a/doc/classes/StyleBoxFlat.xml +++ b/doc/classes/StyleBoxFlat.xml @@ -1,5 +1,5 @@ - + A customizable [StyleBox] that doesn't use a texture. diff --git a/doc/classes/StyleBoxLine.xml b/doc/classes/StyleBoxLine.xml index 5f9d3332f2d..3db14500b04 100644 --- a/doc/classes/StyleBoxLine.xml +++ b/doc/classes/StyleBoxLine.xml @@ -1,5 +1,5 @@ - + A [StyleBox] that displays a single line of a given color and thickness. diff --git a/doc/classes/StyleBoxTexture.xml b/doc/classes/StyleBoxTexture.xml index 109b5da9ba3..5f0af950099 100644 --- a/doc/classes/StyleBoxTexture.xml +++ b/doc/classes/StyleBoxTexture.xml @@ -1,5 +1,5 @@ - + A texture-based nine-patch [StyleBox]. diff --git a/doc/classes/SubViewport.xml b/doc/classes/SubViewport.xml index 4a7b9db75d8..ced4b14e3d9 100644 --- a/doc/classes/SubViewport.xml +++ b/doc/classes/SubViewport.xml @@ -1,5 +1,5 @@ - + An interface to a game world that doesn't create a window or draw to the screen directly. diff --git a/doc/classes/SubViewportContainer.xml b/doc/classes/SubViewportContainer.xml index b01a81a61f0..7f172444525 100644 --- a/doc/classes/SubViewportContainer.xml +++ b/doc/classes/SubViewportContainer.xml @@ -1,5 +1,5 @@ - + A container used for displaying the contents of a [SubViewport]. diff --git a/doc/classes/SubtweenTweener.xml b/doc/classes/SubtweenTweener.xml index c8999ac4f3d..31088d3708e 100644 --- a/doc/classes/SubtweenTweener.xml +++ b/doc/classes/SubtweenTweener.xml @@ -1,5 +1,5 @@ - + Runs a [Tween] nested within another [Tween]. diff --git a/doc/classes/SurfaceTool.xml b/doc/classes/SurfaceTool.xml index 7952898d4e2..1fe191aa9b2 100644 --- a/doc/classes/SurfaceTool.xml +++ b/doc/classes/SurfaceTool.xml @@ -1,5 +1,5 @@ - + Helper tool to create geometry. diff --git a/doc/classes/SyntaxHighlighter.xml b/doc/classes/SyntaxHighlighter.xml index 574fa084dbb..1dbc3749416 100644 --- a/doc/classes/SyntaxHighlighter.xml +++ b/doc/classes/SyntaxHighlighter.xml @@ -1,5 +1,5 @@ - + Base class for syntax highlighters. Provides syntax highlighting data to a [TextEdit]. diff --git a/doc/classes/SystemFont.xml b/doc/classes/SystemFont.xml index 3488a2c6253..e7336ce2f13 100644 --- a/doc/classes/SystemFont.xml +++ b/doc/classes/SystemFont.xml @@ -1,5 +1,5 @@ - + A font loaded from a system font. Falls back to a default theme font if not implemented on the host OS. diff --git a/doc/classes/TCPServer.xml b/doc/classes/TCPServer.xml index 83c7e85cde8..e44b6faf316 100644 --- a/doc/classes/TCPServer.xml +++ b/doc/classes/TCPServer.xml @@ -1,5 +1,5 @@ - + A TCP server. diff --git a/doc/classes/TLSOptions.xml b/doc/classes/TLSOptions.xml index 3bc0bb7e03c..1ab8ca854ff 100644 --- a/doc/classes/TLSOptions.xml +++ b/doc/classes/TLSOptions.xml @@ -1,5 +1,5 @@ - + TLS configuration for clients and servers. diff --git a/doc/classes/TabBar.xml b/doc/classes/TabBar.xml index 30db8a1403a..af25bce3df8 100644 --- a/doc/classes/TabBar.xml +++ b/doc/classes/TabBar.xml @@ -1,5 +1,5 @@ - + A control that provides a horizontal bar with tabs. diff --git a/doc/classes/TabContainer.xml b/doc/classes/TabContainer.xml index 3f9ae530dbb..bc2a173acfb 100644 --- a/doc/classes/TabContainer.xml +++ b/doc/classes/TabContainer.xml @@ -1,5 +1,5 @@ - + A container that creates a tab for each child control, displaying only the active tab's control. diff --git a/doc/classes/TextEdit.xml b/doc/classes/TextEdit.xml index b3e9fd08944..f1ed3a7cb8f 100644 --- a/doc/classes/TextEdit.xml +++ b/doc/classes/TextEdit.xml @@ -1,5 +1,5 @@ - + A multiline text editor. diff --git a/doc/classes/TextLine.xml b/doc/classes/TextLine.xml index c52552f71d8..e7007b6a897 100644 --- a/doc/classes/TextLine.xml +++ b/doc/classes/TextLine.xml @@ -1,5 +1,5 @@ - + Holds a line of text. diff --git a/doc/classes/TextMesh.xml b/doc/classes/TextMesh.xml index 184eeece019..79c09eb65f3 100644 --- a/doc/classes/TextMesh.xml +++ b/doc/classes/TextMesh.xml @@ -1,5 +1,5 @@ - + Generate a [PrimitiveMesh] from the text. diff --git a/doc/classes/TextParagraph.xml b/doc/classes/TextParagraph.xml index 756efa0529f..77a5c974139 100644 --- a/doc/classes/TextParagraph.xml +++ b/doc/classes/TextParagraph.xml @@ -1,5 +1,5 @@ - + Holds a paragraph of text. diff --git a/doc/classes/TextServer.xml b/doc/classes/TextServer.xml index 759bdfbe00c..633c267030e 100644 --- a/doc/classes/TextServer.xml +++ b/doc/classes/TextServer.xml @@ -1,5 +1,5 @@ - + A server interface for font management and text rendering. diff --git a/doc/classes/TextServerDummy.xml b/doc/classes/TextServerDummy.xml index bf86700855a..3c3415c15a5 100644 --- a/doc/classes/TextServerDummy.xml +++ b/doc/classes/TextServerDummy.xml @@ -1,5 +1,5 @@ - + A dummy text server that can't render text or manage fonts. diff --git a/doc/classes/TextServerExtension.xml b/doc/classes/TextServerExtension.xml index cfc8313c47f..df038ba167f 100644 --- a/doc/classes/TextServerExtension.xml +++ b/doc/classes/TextServerExtension.xml @@ -1,5 +1,5 @@ - + Base class for custom [TextServer] implementations (plugins). diff --git a/doc/classes/TextServerManager.xml b/doc/classes/TextServerManager.xml index c0194655e57..4d1ece0ceba 100644 --- a/doc/classes/TextServerManager.xml +++ b/doc/classes/TextServerManager.xml @@ -1,5 +1,5 @@ - + A singleton for managing [TextServer] implementations. diff --git a/doc/classes/Texture.xml b/doc/classes/Texture.xml index ae282319f58..8616e398607 100644 --- a/doc/classes/Texture.xml +++ b/doc/classes/Texture.xml @@ -1,5 +1,5 @@ - + Base class for all texture types. diff --git a/doc/classes/Texture2D.xml b/doc/classes/Texture2D.xml index fe604939f9e..1cb6ea94af4 100644 --- a/doc/classes/Texture2D.xml +++ b/doc/classes/Texture2D.xml @@ -1,5 +1,5 @@ - + Texture for 2D and 3D. diff --git a/doc/classes/Texture2DArray.xml b/doc/classes/Texture2DArray.xml index b5f8b683b08..7f9af51bfbe 100644 --- a/doc/classes/Texture2DArray.xml +++ b/doc/classes/Texture2DArray.xml @@ -1,5 +1,5 @@ - + A single texture resource which consists of multiple, separate images. Each image has the same dimensions and number of mipmap levels. diff --git a/doc/classes/Texture2DArrayRD.xml b/doc/classes/Texture2DArrayRD.xml index 72759c8e847..6549c4f9096 100644 --- a/doc/classes/Texture2DArrayRD.xml +++ b/doc/classes/Texture2DArrayRD.xml @@ -1,5 +1,5 @@ - + Texture Array for 2D that is bound to a texture created on the [RenderingDevice]. diff --git a/doc/classes/Texture2DRD.xml b/doc/classes/Texture2DRD.xml index 9832bcfc631..5519e419fac 100644 --- a/doc/classes/Texture2DRD.xml +++ b/doc/classes/Texture2DRD.xml @@ -1,5 +1,5 @@ - + Texture for 2D that is bound to a texture created on the [RenderingDevice]. diff --git a/doc/classes/Texture3D.xml b/doc/classes/Texture3D.xml index 5c335aeb0c5..bc0b88a4c52 100644 --- a/doc/classes/Texture3D.xml +++ b/doc/classes/Texture3D.xml @@ -1,5 +1,5 @@ - + Base class for 3-dimensional textures. diff --git a/doc/classes/Texture3DRD.xml b/doc/classes/Texture3DRD.xml index 10e7f7caa59..b26d4138f1c 100644 --- a/doc/classes/Texture3DRD.xml +++ b/doc/classes/Texture3DRD.xml @@ -1,5 +1,5 @@ - + Texture for 3D that is bound to a texture created on the [RenderingDevice]. diff --git a/doc/classes/TextureButton.xml b/doc/classes/TextureButton.xml index fcab07198c6..46734eef0b5 100644 --- a/doc/classes/TextureButton.xml +++ b/doc/classes/TextureButton.xml @@ -1,5 +1,5 @@ - + Texture-based button. Supports Pressed, Hover, Disabled and Focused states. diff --git a/doc/classes/TextureCubemapArrayRD.xml b/doc/classes/TextureCubemapArrayRD.xml index 3d7112d420d..3c70efc177d 100644 --- a/doc/classes/TextureCubemapArrayRD.xml +++ b/doc/classes/TextureCubemapArrayRD.xml @@ -1,5 +1,5 @@ - + Texture Array for Cubemaps that is bound to a texture created on the [RenderingDevice]. diff --git a/doc/classes/TextureCubemapRD.xml b/doc/classes/TextureCubemapRD.xml index 7a96bd3eeaa..7149bfa3997 100644 --- a/doc/classes/TextureCubemapRD.xml +++ b/doc/classes/TextureCubemapRD.xml @@ -1,5 +1,5 @@ - + Texture for Cubemap that is bound to a texture created on the [RenderingDevice]. diff --git a/doc/classes/TextureLayered.xml b/doc/classes/TextureLayered.xml index d7c830dae08..b4649eda9aa 100644 --- a/doc/classes/TextureLayered.xml +++ b/doc/classes/TextureLayered.xml @@ -1,5 +1,5 @@ - + Base class for texture types which contain the data of multiple [Image]s. Each image is of the same size and format. diff --git a/doc/classes/TextureLayeredRD.xml b/doc/classes/TextureLayeredRD.xml index e1a2971b792..6f1ad3b58a5 100644 --- a/doc/classes/TextureLayeredRD.xml +++ b/doc/classes/TextureLayeredRD.xml @@ -1,5 +1,5 @@ - + Abstract base class for layered texture RD types. diff --git a/doc/classes/TextureProgressBar.xml b/doc/classes/TextureProgressBar.xml index ee26b7650c5..346eb80e655 100644 --- a/doc/classes/TextureProgressBar.xml +++ b/doc/classes/TextureProgressBar.xml @@ -1,5 +1,5 @@ - + Texture-based progress bar. Useful for loading screens and life or stamina bars. diff --git a/doc/classes/TextureRect.xml b/doc/classes/TextureRect.xml index cd53bbab74a..818433fa95a 100644 --- a/doc/classes/TextureRect.xml +++ b/doc/classes/TextureRect.xml @@ -1,5 +1,5 @@ - + A control that displays a texture. diff --git a/doc/classes/Theme.xml b/doc/classes/Theme.xml index 6dbc671cba9..e4325dacc22 100644 --- a/doc/classes/Theme.xml +++ b/doc/classes/Theme.xml @@ -1,5 +1,5 @@ - + A resource used for styling/skinning [Control]s and [Window]s. diff --git a/doc/classes/ThemeDB.xml b/doc/classes/ThemeDB.xml index 106d011c434..76e9bcf970d 100644 --- a/doc/classes/ThemeDB.xml +++ b/doc/classes/ThemeDB.xml @@ -1,5 +1,5 @@ - + A singleton that provides access to static information about [Theme] resources used by the engine and by your project. diff --git a/doc/classes/Thread.xml b/doc/classes/Thread.xml index 5004c420c78..20979002587 100644 --- a/doc/classes/Thread.xml +++ b/doc/classes/Thread.xml @@ -1,5 +1,5 @@ - + A unit of execution in a process. diff --git a/doc/classes/TileData.xml b/doc/classes/TileData.xml index 7537e18cd5a..911af20563e 100644 --- a/doc/classes/TileData.xml +++ b/doc/classes/TileData.xml @@ -1,5 +1,5 @@ - + Settings for a single tile in a [TileSet]. diff --git a/doc/classes/TileMap.xml b/doc/classes/TileMap.xml index 1cd2825433e..9c9ec181a9d 100644 --- a/doc/classes/TileMap.xml +++ b/doc/classes/TileMap.xml @@ -1,5 +1,5 @@ - + Node for 2D tile-based maps. diff --git a/doc/classes/TileMapLayer.xml b/doc/classes/TileMapLayer.xml index 2e3913be58f..7a7ec48db42 100644 --- a/doc/classes/TileMapLayer.xml +++ b/doc/classes/TileMapLayer.xml @@ -1,5 +1,5 @@ - + Node for 2D tile-based maps. diff --git a/doc/classes/TileMapPattern.xml b/doc/classes/TileMapPattern.xml index f3fce24809b..e01a8badb03 100644 --- a/doc/classes/TileMapPattern.xml +++ b/doc/classes/TileMapPattern.xml @@ -1,5 +1,5 @@ - + Holds a pattern to be copied from or pasted into [TileMap]s. diff --git a/doc/classes/TileSet.xml b/doc/classes/TileSet.xml index cb135e82272..37e28ac9924 100644 --- a/doc/classes/TileSet.xml +++ b/doc/classes/TileSet.xml @@ -1,5 +1,5 @@ - + Tile library for tilemaps. diff --git a/doc/classes/TileSetAtlasSource.xml b/doc/classes/TileSetAtlasSource.xml index 767868d163e..dc5de8f49e1 100644 --- a/doc/classes/TileSetAtlasSource.xml +++ b/doc/classes/TileSetAtlasSource.xml @@ -1,5 +1,5 @@ - + Exposes a 2D atlas texture as a set of tiles for a [TileSet] resource. diff --git a/doc/classes/TileSetScenesCollectionSource.xml b/doc/classes/TileSetScenesCollectionSource.xml index a3a0efd9720..6c29c209f80 100644 --- a/doc/classes/TileSetScenesCollectionSource.xml +++ b/doc/classes/TileSetScenesCollectionSource.xml @@ -1,5 +1,5 @@ - + Exposes a set of scenes as tiles for a [TileSet] resource. diff --git a/doc/classes/TileSetSource.xml b/doc/classes/TileSetSource.xml index 70df23324c6..5dcc74f1016 100644 --- a/doc/classes/TileSetSource.xml +++ b/doc/classes/TileSetSource.xml @@ -1,5 +1,5 @@ - + Exposes a set of tiles for a [TileSet] resource. diff --git a/doc/classes/Time.xml b/doc/classes/Time.xml index bf002ec6e24..2540d945d13 100644 --- a/doc/classes/Time.xml +++ b/doc/classes/Time.xml @@ -1,5 +1,5 @@ - + A singleton for working with time data. diff --git a/doc/classes/Timer.xml b/doc/classes/Timer.xml index e6562523c4d..cedf6b651c3 100644 --- a/doc/classes/Timer.xml +++ b/doc/classes/Timer.xml @@ -1,5 +1,5 @@ - + A countdown timer. diff --git a/doc/classes/TorusMesh.xml b/doc/classes/TorusMesh.xml index 77aee1e07a7..325886dac52 100644 --- a/doc/classes/TorusMesh.xml +++ b/doc/classes/TorusMesh.xml @@ -1,5 +1,5 @@ - + Class representing a torus [PrimitiveMesh]. diff --git a/doc/classes/TouchScreenButton.xml b/doc/classes/TouchScreenButton.xml index 1715ea6e826..acc3fe30052 100644 --- a/doc/classes/TouchScreenButton.xml +++ b/doc/classes/TouchScreenButton.xml @@ -1,5 +1,5 @@ - + Button for touch screen devices for gameplay use. diff --git a/doc/classes/Translation.xml b/doc/classes/Translation.xml index af1839602cf..8aef8294997 100644 --- a/doc/classes/Translation.xml +++ b/doc/classes/Translation.xml @@ -1,5 +1,5 @@ - + A language translation that maps a collection of strings to their individual translations. diff --git a/doc/classes/TranslationDomain.xml b/doc/classes/TranslationDomain.xml index aac39e3fba8..b126cbe34e2 100644 --- a/doc/classes/TranslationDomain.xml +++ b/doc/classes/TranslationDomain.xml @@ -1,5 +1,5 @@ - + A self-contained collection of [Translation] resources. diff --git a/doc/classes/TranslationServer.xml b/doc/classes/TranslationServer.xml index fb2622cdfa6..4ab7588cb78 100644 --- a/doc/classes/TranslationServer.xml +++ b/doc/classes/TranslationServer.xml @@ -1,5 +1,5 @@ - + The server responsible for language translations. diff --git a/doc/classes/Tree.xml b/doc/classes/Tree.xml index 480261326a9..be2fe6cf037 100644 --- a/doc/classes/Tree.xml +++ b/doc/classes/Tree.xml @@ -1,5 +1,5 @@ - + A control used to show a set of internal [TreeItem]s in a hierarchical structure. diff --git a/doc/classes/TreeItem.xml b/doc/classes/TreeItem.xml index 31a16ccffd4..e653df1e61c 100644 --- a/doc/classes/TreeItem.xml +++ b/doc/classes/TreeItem.xml @@ -1,5 +1,5 @@ - + An internal control for a single item inside [Tree]. diff --git a/doc/classes/TriangleMesh.xml b/doc/classes/TriangleMesh.xml index dc4e688b492..8d15e0336b2 100644 --- a/doc/classes/TriangleMesh.xml +++ b/doc/classes/TriangleMesh.xml @@ -1,5 +1,5 @@ - + Triangle geometry for efficient, physicsless intersection queries. diff --git a/doc/classes/TubeTrailMesh.xml b/doc/classes/TubeTrailMesh.xml index 4408280f42a..4717b8230d3 100644 --- a/doc/classes/TubeTrailMesh.xml +++ b/doc/classes/TubeTrailMesh.xml @@ -1,5 +1,5 @@ - + Represents a straight tube-shaped [PrimitiveMesh] with variable width. diff --git a/doc/classes/Tween.xml b/doc/classes/Tween.xml index d1d253cf18f..91b04858355 100644 --- a/doc/classes/Tween.xml +++ b/doc/classes/Tween.xml @@ -1,5 +1,5 @@ - + Lightweight object used for general-purpose animation via script, using [Tweener]s. diff --git a/doc/classes/Tweener.xml b/doc/classes/Tweener.xml index 88f5f9978c0..af8d7535b6c 100644 --- a/doc/classes/Tweener.xml +++ b/doc/classes/Tweener.xml @@ -1,5 +1,5 @@ - + Abstract class for all Tweeners used by [Tween]. diff --git a/doc/classes/TwoBoneIK3D.xml b/doc/classes/TwoBoneIK3D.xml index ff77f5d36a6..d951466b2ce 100644 --- a/doc/classes/TwoBoneIK3D.xml +++ b/doc/classes/TwoBoneIK3D.xml @@ -1,5 +1,5 @@ - + Rotation based intersection of two circles inverse kinematics solver. diff --git a/doc/classes/UDPServer.xml b/doc/classes/UDPServer.xml index 48afa344f2a..b2967742a65 100644 --- a/doc/classes/UDPServer.xml +++ b/doc/classes/UDPServer.xml @@ -1,5 +1,5 @@ - + Helper class to implement a UDP server. diff --git a/doc/classes/UDSServer.xml b/doc/classes/UDSServer.xml index f22b38204f1..6b63cb66f35 100644 --- a/doc/classes/UDSServer.xml +++ b/doc/classes/UDSServer.xml @@ -1,5 +1,5 @@ - + A Unix Domain Socket (UDS) server. diff --git a/doc/classes/UndoRedo.xml b/doc/classes/UndoRedo.xml index c5651c1e6c3..01fce5567e4 100644 --- a/doc/classes/UndoRedo.xml +++ b/doc/classes/UndoRedo.xml @@ -1,5 +1,5 @@ - + Provides a high-level interface for implementing undo and redo operations. diff --git a/doc/classes/UniformSetCacheRD.xml b/doc/classes/UniformSetCacheRD.xml index 2a67e97e9fb..8a20de10b24 100644 --- a/doc/classes/UniformSetCacheRD.xml +++ b/doc/classes/UniformSetCacheRD.xml @@ -1,5 +1,5 @@ - + Uniform set cache manager for Rendering Device based renderers. diff --git a/doc/classes/VBoxContainer.xml b/doc/classes/VBoxContainer.xml index 62484ecdc05..a0716532f88 100644 --- a/doc/classes/VBoxContainer.xml +++ b/doc/classes/VBoxContainer.xml @@ -1,5 +1,5 @@ - + A container that arranges its child controls vertically. diff --git a/doc/classes/VFlowContainer.xml b/doc/classes/VFlowContainer.xml index 5c896da7294..11778eb8ed6 100644 --- a/doc/classes/VFlowContainer.xml +++ b/doc/classes/VFlowContainer.xml @@ -1,5 +1,5 @@ - + A container that arranges its child controls vertically and wraps them around at the borders. diff --git a/doc/classes/VScrollBar.xml b/doc/classes/VScrollBar.xml index b726b059bb1..f332696e923 100644 --- a/doc/classes/VScrollBar.xml +++ b/doc/classes/VScrollBar.xml @@ -1,5 +1,5 @@ - + A vertical scrollbar that goes from top (min) to bottom (max). diff --git a/doc/classes/VSeparator.xml b/doc/classes/VSeparator.xml index 57d1c9e704a..47adf2c3bf7 100644 --- a/doc/classes/VSeparator.xml +++ b/doc/classes/VSeparator.xml @@ -1,5 +1,5 @@ - + A vertical line used for separating other controls. diff --git a/doc/classes/VSlider.xml b/doc/classes/VSlider.xml index eea5ba50604..7314fe7953f 100644 --- a/doc/classes/VSlider.xml +++ b/doc/classes/VSlider.xml @@ -1,5 +1,5 @@ - + A vertical slider that goes from bottom (min) to top (max). diff --git a/doc/classes/VSplitContainer.xml b/doc/classes/VSplitContainer.xml index 5932ca73694..53b49c3fcd9 100644 --- a/doc/classes/VSplitContainer.xml +++ b/doc/classes/VSplitContainer.xml @@ -1,5 +1,5 @@ - + A container that splits two child controls vertically and provides a grabber for adjusting the split ratio. diff --git a/doc/classes/VehicleBody3D.xml b/doc/classes/VehicleBody3D.xml index 968acab20b2..8191b46f1fb 100644 --- a/doc/classes/VehicleBody3D.xml +++ b/doc/classes/VehicleBody3D.xml @@ -1,5 +1,5 @@ - + A 3D physics body that simulates the behavior of a car. diff --git a/doc/classes/VehicleWheel3D.xml b/doc/classes/VehicleWheel3D.xml index dee096a52e6..84ec28f6344 100644 --- a/doc/classes/VehicleWheel3D.xml +++ b/doc/classes/VehicleWheel3D.xml @@ -1,5 +1,5 @@ - + A 3D physics body for a [VehicleBody3D] that simulates the behavior of a wheel. diff --git a/doc/classes/VideoStream.xml b/doc/classes/VideoStream.xml index c7974dc24e9..f86b75f42db 100644 --- a/doc/classes/VideoStream.xml +++ b/doc/classes/VideoStream.xml @@ -1,5 +1,5 @@ - + Base resource for video streams. diff --git a/doc/classes/VideoStreamPlayback.xml b/doc/classes/VideoStreamPlayback.xml index 05f641e7907..825f9b9e306 100644 --- a/doc/classes/VideoStreamPlayback.xml +++ b/doc/classes/VideoStreamPlayback.xml @@ -1,5 +1,5 @@ - + Internal class used by [VideoStream] to manage playback state when played from a [VideoStreamPlayer]. diff --git a/doc/classes/VideoStreamPlayer.xml b/doc/classes/VideoStreamPlayer.xml index 01bcca35907..278648070d9 100644 --- a/doc/classes/VideoStreamPlayer.xml +++ b/doc/classes/VideoStreamPlayer.xml @@ -1,5 +1,5 @@ - + A control used for video playback. diff --git a/doc/classes/Viewport.xml b/doc/classes/Viewport.xml index eb70a0134b3..b8c52560eee 100644 --- a/doc/classes/Viewport.xml +++ b/doc/classes/Viewport.xml @@ -1,5 +1,5 @@ - + Abstract base class for viewports. Encapsulates drawing and interaction with a game world. diff --git a/doc/classes/ViewportTexture.xml b/doc/classes/ViewportTexture.xml index 0b6963b0cf8..135b1375541 100644 --- a/doc/classes/ViewportTexture.xml +++ b/doc/classes/ViewportTexture.xml @@ -1,5 +1,5 @@ - + Provides the content of a [Viewport] as a dynamic texture. diff --git a/doc/classes/VirtualJoystick.xml b/doc/classes/VirtualJoystick.xml index 8f34d2698f2..4538c0acf19 100644 --- a/doc/classes/VirtualJoystick.xml +++ b/doc/classes/VirtualJoystick.xml @@ -1,5 +1,5 @@ - + A virtual joystick control for touchscreen devices. diff --git a/doc/classes/VisibleOnScreenEnabler2D.xml b/doc/classes/VisibleOnScreenEnabler2D.xml index 75987fa21c6..7e2a5bdf84d 100644 --- a/doc/classes/VisibleOnScreenEnabler2D.xml +++ b/doc/classes/VisibleOnScreenEnabler2D.xml @@ -1,5 +1,5 @@ - + A rectangular region of 2D space that, when visible on screen, enables a target node. diff --git a/doc/classes/VisibleOnScreenEnabler3D.xml b/doc/classes/VisibleOnScreenEnabler3D.xml index ff7547f75b4..93c6892a899 100644 --- a/doc/classes/VisibleOnScreenEnabler3D.xml +++ b/doc/classes/VisibleOnScreenEnabler3D.xml @@ -1,5 +1,5 @@ - + A box-shaped region of 3D space that, when visible on screen, enables a target node. diff --git a/doc/classes/VisibleOnScreenNotifier2D.xml b/doc/classes/VisibleOnScreenNotifier2D.xml index 01ab440d437..aa3e97bc7b7 100644 --- a/doc/classes/VisibleOnScreenNotifier2D.xml +++ b/doc/classes/VisibleOnScreenNotifier2D.xml @@ -1,5 +1,5 @@ - + A rectangular region of 2D space that detects whether it is visible on screen. diff --git a/doc/classes/VisibleOnScreenNotifier3D.xml b/doc/classes/VisibleOnScreenNotifier3D.xml index ce8a4b398d4..581adc4627e 100644 --- a/doc/classes/VisibleOnScreenNotifier3D.xml +++ b/doc/classes/VisibleOnScreenNotifier3D.xml @@ -1,5 +1,5 @@ - + A box-shaped region of 3D space that detects whether it is visible on screen. diff --git a/doc/classes/VisualInstance3D.xml b/doc/classes/VisualInstance3D.xml index e67934f5c92..fa6f2212c96 100644 --- a/doc/classes/VisualInstance3D.xml +++ b/doc/classes/VisualInstance3D.xml @@ -1,5 +1,5 @@ - + Parent of all visual 3D nodes. diff --git a/doc/classes/VisualShader.xml b/doc/classes/VisualShader.xml index 4665252158d..dae8019e7a6 100644 --- a/doc/classes/VisualShader.xml +++ b/doc/classes/VisualShader.xml @@ -1,5 +1,5 @@ - + A custom shader program with a visual editor. diff --git a/doc/classes/VisualShaderNode.xml b/doc/classes/VisualShaderNode.xml index 5b82d202462..75a024eecb6 100644 --- a/doc/classes/VisualShaderNode.xml +++ b/doc/classes/VisualShaderNode.xml @@ -1,5 +1,5 @@ - + Base class for [VisualShader] nodes. Not related to scene nodes. diff --git a/doc/classes/VisualShaderNodeBillboard.xml b/doc/classes/VisualShaderNodeBillboard.xml index a81b09e93fa..c38f8b89335 100644 --- a/doc/classes/VisualShaderNodeBillboard.xml +++ b/doc/classes/VisualShaderNodeBillboard.xml @@ -1,5 +1,5 @@ - + A node that controls how the object faces the camera to be used within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeBooleanConstant.xml b/doc/classes/VisualShaderNodeBooleanConstant.xml index d2a7ff3d45d..fd536c8a315 100644 --- a/doc/classes/VisualShaderNodeBooleanConstant.xml +++ b/doc/classes/VisualShaderNodeBooleanConstant.xml @@ -1,5 +1,5 @@ - + A boolean constant to be used within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeBooleanParameter.xml b/doc/classes/VisualShaderNodeBooleanParameter.xml index ef64c0948f3..ff19c2949d1 100644 --- a/doc/classes/VisualShaderNodeBooleanParameter.xml +++ b/doc/classes/VisualShaderNodeBooleanParameter.xml @@ -1,5 +1,5 @@ - + A boolean parameter to be used within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeClamp.xml b/doc/classes/VisualShaderNodeClamp.xml index 56100f17d74..ed8f9b5f96c 100644 --- a/doc/classes/VisualShaderNodeClamp.xml +++ b/doc/classes/VisualShaderNodeClamp.xml @@ -1,5 +1,5 @@ - + Clamps a value within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeColorConstant.xml b/doc/classes/VisualShaderNodeColorConstant.xml index 3ed754ccdae..51a9f52f40d 100644 --- a/doc/classes/VisualShaderNodeColorConstant.xml +++ b/doc/classes/VisualShaderNodeColorConstant.xml @@ -1,5 +1,5 @@ - + A [Color] constant to be used within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeColorFunc.xml b/doc/classes/VisualShaderNodeColorFunc.xml index 1af6afc3ef5..21947ac646b 100644 --- a/doc/classes/VisualShaderNodeColorFunc.xml +++ b/doc/classes/VisualShaderNodeColorFunc.xml @@ -1,5 +1,5 @@ - + A [Color] function to be used within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeColorOp.xml b/doc/classes/VisualShaderNodeColorOp.xml index bb7f9d6851f..eba02845c8a 100644 --- a/doc/classes/VisualShaderNodeColorOp.xml +++ b/doc/classes/VisualShaderNodeColorOp.xml @@ -1,5 +1,5 @@ - + A [Color] operator to be used within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeColorParameter.xml b/doc/classes/VisualShaderNodeColorParameter.xml index 49ceec2648e..545eb983dfe 100644 --- a/doc/classes/VisualShaderNodeColorParameter.xml +++ b/doc/classes/VisualShaderNodeColorParameter.xml @@ -1,5 +1,5 @@ - + A [Color] parameter to be used within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeComment.xml b/doc/classes/VisualShaderNodeComment.xml index 28496a715ae..9e65a521025 100644 --- a/doc/classes/VisualShaderNodeComment.xml +++ b/doc/classes/VisualShaderNodeComment.xml @@ -1,5 +1,5 @@ - + Only exists for compatibility. Use [VisualShaderNodeFrame] as a replacement. diff --git a/doc/classes/VisualShaderNodeCompare.xml b/doc/classes/VisualShaderNodeCompare.xml index 63f51f2f0e9..489dbb8203b 100644 --- a/doc/classes/VisualShaderNodeCompare.xml +++ b/doc/classes/VisualShaderNodeCompare.xml @@ -1,5 +1,5 @@ - + A comparison function for common types within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeConstant.xml b/doc/classes/VisualShaderNodeConstant.xml index 1fa6a53f9be..868489f5ff2 100644 --- a/doc/classes/VisualShaderNodeConstant.xml +++ b/doc/classes/VisualShaderNodeConstant.xml @@ -1,5 +1,5 @@ - + A base type for the constants within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeCubemap.xml b/doc/classes/VisualShaderNodeCubemap.xml index fe1e4c1c3d5..06b183d9293 100644 --- a/doc/classes/VisualShaderNodeCubemap.xml +++ b/doc/classes/VisualShaderNodeCubemap.xml @@ -1,5 +1,5 @@ - + A [Cubemap] sampling node to be used within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeCubemapParameter.xml b/doc/classes/VisualShaderNodeCubemapParameter.xml index 0b2d87c13df..47f2fd94ea5 100644 --- a/doc/classes/VisualShaderNodeCubemapParameter.xml +++ b/doc/classes/VisualShaderNodeCubemapParameter.xml @@ -1,5 +1,5 @@ - + A [Cubemap] parameter node to be used within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeCurveTexture.xml b/doc/classes/VisualShaderNodeCurveTexture.xml index d2012750b56..dacdf79689f 100644 --- a/doc/classes/VisualShaderNodeCurveTexture.xml +++ b/doc/classes/VisualShaderNodeCurveTexture.xml @@ -1,5 +1,5 @@ - + Performs a [CurveTexture] lookup within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeCurveXYZTexture.xml b/doc/classes/VisualShaderNodeCurveXYZTexture.xml index 83e3240d3aa..78b54c7ef65 100644 --- a/doc/classes/VisualShaderNodeCurveXYZTexture.xml +++ b/doc/classes/VisualShaderNodeCurveXYZTexture.xml @@ -1,5 +1,5 @@ - + Performs a [CurveXYZTexture] lookup within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeCustom.xml b/doc/classes/VisualShaderNodeCustom.xml index a03372fba67..a32570395a7 100644 --- a/doc/classes/VisualShaderNodeCustom.xml +++ b/doc/classes/VisualShaderNodeCustom.xml @@ -1,5 +1,5 @@ - + Virtual class to define custom [VisualShaderNode]s for use in the Visual Shader Editor. diff --git a/doc/classes/VisualShaderNodeDerivativeFunc.xml b/doc/classes/VisualShaderNodeDerivativeFunc.xml index 49a189995fe..fa34ea23163 100644 --- a/doc/classes/VisualShaderNodeDerivativeFunc.xml +++ b/doc/classes/VisualShaderNodeDerivativeFunc.xml @@ -1,5 +1,5 @@ - + Calculates a derivative within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeDeterminant.xml b/doc/classes/VisualShaderNodeDeterminant.xml index cbb43edfef6..a32490f443f 100644 --- a/doc/classes/VisualShaderNodeDeterminant.xml +++ b/doc/classes/VisualShaderNodeDeterminant.xml @@ -1,5 +1,5 @@ - + Calculates the determinant of a [Transform3D] within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeDistanceFade.xml b/doc/classes/VisualShaderNodeDistanceFade.xml index 69381c0f0fb..9a905bfbdbb 100644 --- a/doc/classes/VisualShaderNodeDistanceFade.xml +++ b/doc/classes/VisualShaderNodeDistanceFade.xml @@ -1,5 +1,5 @@ - + A visual shader node representing distance fade effect. diff --git a/doc/classes/VisualShaderNodeDotProduct.xml b/doc/classes/VisualShaderNodeDotProduct.xml index f9c93831fc3..e7367c9154b 100644 --- a/doc/classes/VisualShaderNodeDotProduct.xml +++ b/doc/classes/VisualShaderNodeDotProduct.xml @@ -1,5 +1,5 @@ - + Calculates a dot product of two vectors within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeExpression.xml b/doc/classes/VisualShaderNodeExpression.xml index c916aecc500..e8862fbcd2a 100644 --- a/doc/classes/VisualShaderNodeExpression.xml +++ b/doc/classes/VisualShaderNodeExpression.xml @@ -1,5 +1,5 @@ - + A custom visual shader graph expression written in Godot Shading Language. diff --git a/doc/classes/VisualShaderNodeFaceForward.xml b/doc/classes/VisualShaderNodeFaceForward.xml index b63602e388e..ae56d24b893 100644 --- a/doc/classes/VisualShaderNodeFaceForward.xml +++ b/doc/classes/VisualShaderNodeFaceForward.xml @@ -1,5 +1,5 @@ - + Returns the vector that points in the same direction as a reference vector within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeFloatConstant.xml b/doc/classes/VisualShaderNodeFloatConstant.xml index 2436663f1fb..96c3cc926f0 100644 --- a/doc/classes/VisualShaderNodeFloatConstant.xml +++ b/doc/classes/VisualShaderNodeFloatConstant.xml @@ -1,5 +1,5 @@ - + A scalar floating-point constant to be used within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeFloatFunc.xml b/doc/classes/VisualShaderNodeFloatFunc.xml index 79abbf1a91f..2825fc277a6 100644 --- a/doc/classes/VisualShaderNodeFloatFunc.xml +++ b/doc/classes/VisualShaderNodeFloatFunc.xml @@ -1,5 +1,5 @@ - + A scalar floating-point function to be used within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeFloatOp.xml b/doc/classes/VisualShaderNodeFloatOp.xml index 6e97dd7767a..61c25092de0 100644 --- a/doc/classes/VisualShaderNodeFloatOp.xml +++ b/doc/classes/VisualShaderNodeFloatOp.xml @@ -1,5 +1,5 @@ - + A floating-point scalar operator to be used within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeFloatParameter.xml b/doc/classes/VisualShaderNodeFloatParameter.xml index a4a76644a6d..67b8495aaa8 100644 --- a/doc/classes/VisualShaderNodeFloatParameter.xml +++ b/doc/classes/VisualShaderNodeFloatParameter.xml @@ -1,5 +1,5 @@ - + A scalar float parameter to be used within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeFrame.xml b/doc/classes/VisualShaderNodeFrame.xml index a86587f16ab..85e042d51bd 100644 --- a/doc/classes/VisualShaderNodeFrame.xml +++ b/doc/classes/VisualShaderNodeFrame.xml @@ -1,5 +1,5 @@ - + A frame other visual shader nodes can be attached to for better organization. diff --git a/doc/classes/VisualShaderNodeFresnel.xml b/doc/classes/VisualShaderNodeFresnel.xml index 4d050faeb3c..40614092810 100644 --- a/doc/classes/VisualShaderNodeFresnel.xml +++ b/doc/classes/VisualShaderNodeFresnel.xml @@ -1,5 +1,5 @@ - + A Fresnel effect to be used within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeGlobalExpression.xml b/doc/classes/VisualShaderNodeGlobalExpression.xml index 69204373c28..35dc368bb59 100644 --- a/doc/classes/VisualShaderNodeGlobalExpression.xml +++ b/doc/classes/VisualShaderNodeGlobalExpression.xml @@ -1,5 +1,5 @@ - + A custom global visual shader graph expression written in Godot Shading Language. diff --git a/doc/classes/VisualShaderNodeGroupBase.xml b/doc/classes/VisualShaderNodeGroupBase.xml index a1cee7193e9..838592192c0 100644 --- a/doc/classes/VisualShaderNodeGroupBase.xml +++ b/doc/classes/VisualShaderNodeGroupBase.xml @@ -1,5 +1,5 @@ - + Base class for a family of nodes with variable number of input and output ports within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeIf.xml b/doc/classes/VisualShaderNodeIf.xml index f3d76a4ac33..dc628c60b7d 100644 --- a/doc/classes/VisualShaderNodeIf.xml +++ b/doc/classes/VisualShaderNodeIf.xml @@ -1,5 +1,5 @@ - + Outputs a 3D vector based on the result of a floating-point comparison within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeInput.xml b/doc/classes/VisualShaderNodeInput.xml index 79ed8dde9eb..055f5d91ce5 100644 --- a/doc/classes/VisualShaderNodeInput.xml +++ b/doc/classes/VisualShaderNodeInput.xml @@ -1,5 +1,5 @@ - + Represents the input shader parameter within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeIntConstant.xml b/doc/classes/VisualShaderNodeIntConstant.xml index f942bf299f5..d2d9e06be28 100644 --- a/doc/classes/VisualShaderNodeIntConstant.xml +++ b/doc/classes/VisualShaderNodeIntConstant.xml @@ -1,5 +1,5 @@ - + A scalar integer constant to be used within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeIntFunc.xml b/doc/classes/VisualShaderNodeIntFunc.xml index aade8be07da..4919237b173 100644 --- a/doc/classes/VisualShaderNodeIntFunc.xml +++ b/doc/classes/VisualShaderNodeIntFunc.xml @@ -1,5 +1,5 @@ - + A scalar integer function to be used within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeIntOp.xml b/doc/classes/VisualShaderNodeIntOp.xml index 539f6b7c2d7..66ff83ac116 100644 --- a/doc/classes/VisualShaderNodeIntOp.xml +++ b/doc/classes/VisualShaderNodeIntOp.xml @@ -1,5 +1,5 @@ - + An integer scalar operator to be used within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeIntParameter.xml b/doc/classes/VisualShaderNodeIntParameter.xml index ba17da49a82..d0ee8f1eb2d 100644 --- a/doc/classes/VisualShaderNodeIntParameter.xml +++ b/doc/classes/VisualShaderNodeIntParameter.xml @@ -1,5 +1,5 @@ - + A visual shader node for shader parameter (uniform) of type [int]. diff --git a/doc/classes/VisualShaderNodeIs.xml b/doc/classes/VisualShaderNodeIs.xml index 45df5852885..208924edff8 100644 --- a/doc/classes/VisualShaderNodeIs.xml +++ b/doc/classes/VisualShaderNodeIs.xml @@ -1,5 +1,5 @@ - + A boolean comparison operator to be used within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeLinearSceneDepth.xml b/doc/classes/VisualShaderNodeLinearSceneDepth.xml index f035ba7898a..0f7cdfa339e 100644 --- a/doc/classes/VisualShaderNodeLinearSceneDepth.xml +++ b/doc/classes/VisualShaderNodeLinearSceneDepth.xml @@ -1,5 +1,5 @@ - + A visual shader node that returns the depth value of the DEPTH_TEXTURE node in a linear space. diff --git a/doc/classes/VisualShaderNodeMix.xml b/doc/classes/VisualShaderNodeMix.xml index d4444c888d9..5b8a70f4660 100644 --- a/doc/classes/VisualShaderNodeMix.xml +++ b/doc/classes/VisualShaderNodeMix.xml @@ -1,5 +1,5 @@ - + Linearly interpolates between two values within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeMultiplyAdd.xml b/doc/classes/VisualShaderNodeMultiplyAdd.xml index 9f622acb87f..a539c5a1c13 100644 --- a/doc/classes/VisualShaderNodeMultiplyAdd.xml +++ b/doc/classes/VisualShaderNodeMultiplyAdd.xml @@ -1,5 +1,5 @@ - + Performs a fused multiply-add operation within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeOuterProduct.xml b/doc/classes/VisualShaderNodeOuterProduct.xml index 1e8d2579a24..f9bdc88f50a 100644 --- a/doc/classes/VisualShaderNodeOuterProduct.xml +++ b/doc/classes/VisualShaderNodeOuterProduct.xml @@ -1,5 +1,5 @@ - + Calculates an outer product of two vectors within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeOutput.xml b/doc/classes/VisualShaderNodeOutput.xml index 6730f96d73f..915100dec50 100644 --- a/doc/classes/VisualShaderNodeOutput.xml +++ b/doc/classes/VisualShaderNodeOutput.xml @@ -1,5 +1,5 @@ - + Represents the output shader parameters within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeParameter.xml b/doc/classes/VisualShaderNodeParameter.xml index 2072ec490d5..ef84792cd68 100644 --- a/doc/classes/VisualShaderNodeParameter.xml +++ b/doc/classes/VisualShaderNodeParameter.xml @@ -1,5 +1,5 @@ - + A base type for the parameters within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeParameterRef.xml b/doc/classes/VisualShaderNodeParameterRef.xml index ffd8ce68aa7..7f2b323b61e 100644 --- a/doc/classes/VisualShaderNodeParameterRef.xml +++ b/doc/classes/VisualShaderNodeParameterRef.xml @@ -1,5 +1,5 @@ - + A reference to an existing [VisualShaderNodeParameter]. diff --git a/doc/classes/VisualShaderNodeParticleAccelerator.xml b/doc/classes/VisualShaderNodeParticleAccelerator.xml index 09075255353..b5dad463b9b 100644 --- a/doc/classes/VisualShaderNodeParticleAccelerator.xml +++ b/doc/classes/VisualShaderNodeParticleAccelerator.xml @@ -1,5 +1,5 @@ - + A visual shader node that accelerates particles. diff --git a/doc/classes/VisualShaderNodeParticleBoxEmitter.xml b/doc/classes/VisualShaderNodeParticleBoxEmitter.xml index 8d986969ddf..d0d0028ed91 100644 --- a/doc/classes/VisualShaderNodeParticleBoxEmitter.xml +++ b/doc/classes/VisualShaderNodeParticleBoxEmitter.xml @@ -1,5 +1,5 @@ - + A visual shader node that makes particles emitted in a box shape. diff --git a/doc/classes/VisualShaderNodeParticleConeVelocity.xml b/doc/classes/VisualShaderNodeParticleConeVelocity.xml index a49316e314a..23aa4f5787a 100644 --- a/doc/classes/VisualShaderNodeParticleConeVelocity.xml +++ b/doc/classes/VisualShaderNodeParticleConeVelocity.xml @@ -1,5 +1,5 @@ - + A visual shader node that makes particles move in a cone shape. diff --git a/doc/classes/VisualShaderNodeParticleEmit.xml b/doc/classes/VisualShaderNodeParticleEmit.xml index c8ad642795b..9be62bb0a44 100644 --- a/doc/classes/VisualShaderNodeParticleEmit.xml +++ b/doc/classes/VisualShaderNodeParticleEmit.xml @@ -1,5 +1,5 @@ - + A visual shader node that forces to emit a particle from a sub-emitter. diff --git a/doc/classes/VisualShaderNodeParticleEmitter.xml b/doc/classes/VisualShaderNodeParticleEmitter.xml index a56e15074f1..9771b554890 100644 --- a/doc/classes/VisualShaderNodeParticleEmitter.xml +++ b/doc/classes/VisualShaderNodeParticleEmitter.xml @@ -1,5 +1,5 @@ - + A base class for particle emitters. diff --git a/doc/classes/VisualShaderNodeParticleMeshEmitter.xml b/doc/classes/VisualShaderNodeParticleMeshEmitter.xml index e5f34bbc735..0203ce03130 100644 --- a/doc/classes/VisualShaderNodeParticleMeshEmitter.xml +++ b/doc/classes/VisualShaderNodeParticleMeshEmitter.xml @@ -1,5 +1,5 @@ - + A visual shader node that makes particles emitted in a shape defined by a [Mesh]. diff --git a/doc/classes/VisualShaderNodeParticleMultiplyByAxisAngle.xml b/doc/classes/VisualShaderNodeParticleMultiplyByAxisAngle.xml index 5e7d3f3dd2c..035f29442dc 100644 --- a/doc/classes/VisualShaderNodeParticleMultiplyByAxisAngle.xml +++ b/doc/classes/VisualShaderNodeParticleMultiplyByAxisAngle.xml @@ -1,5 +1,5 @@ - + A visual shader helper node for multiplying position and rotation of particles. diff --git a/doc/classes/VisualShaderNodeParticleOutput.xml b/doc/classes/VisualShaderNodeParticleOutput.xml index d6dc88ba330..93ea204d3a1 100644 --- a/doc/classes/VisualShaderNodeParticleOutput.xml +++ b/doc/classes/VisualShaderNodeParticleOutput.xml @@ -1,5 +1,5 @@ - + Visual shader node that defines output values for particle emitting. diff --git a/doc/classes/VisualShaderNodeParticleRandomness.xml b/doc/classes/VisualShaderNodeParticleRandomness.xml index 406b1944de6..97bb8704db4 100644 --- a/doc/classes/VisualShaderNodeParticleRandomness.xml +++ b/doc/classes/VisualShaderNodeParticleRandomness.xml @@ -1,5 +1,5 @@ - + Visual shader node for randomizing particle values. diff --git a/doc/classes/VisualShaderNodeParticleRingEmitter.xml b/doc/classes/VisualShaderNodeParticleRingEmitter.xml index 623f153f733..fbe8dc29a70 100644 --- a/doc/classes/VisualShaderNodeParticleRingEmitter.xml +++ b/doc/classes/VisualShaderNodeParticleRingEmitter.xml @@ -1,5 +1,5 @@ - + A visual shader node that makes particles emitted in a ring shape. diff --git a/doc/classes/VisualShaderNodeParticleSphereEmitter.xml b/doc/classes/VisualShaderNodeParticleSphereEmitter.xml index dea99a1322e..4903e05949c 100644 --- a/doc/classes/VisualShaderNodeParticleSphereEmitter.xml +++ b/doc/classes/VisualShaderNodeParticleSphereEmitter.xml @@ -1,5 +1,5 @@ - + A visual shader node that makes particles emitted in a sphere shape. diff --git a/doc/classes/VisualShaderNodeProximityFade.xml b/doc/classes/VisualShaderNodeProximityFade.xml index 70ae8e7ea39..dd07ba47975 100644 --- a/doc/classes/VisualShaderNodeProximityFade.xml +++ b/doc/classes/VisualShaderNodeProximityFade.xml @@ -1,5 +1,5 @@ - + A visual shader node representing proximity fade effect. diff --git a/doc/classes/VisualShaderNodeRandomRange.xml b/doc/classes/VisualShaderNodeRandomRange.xml index c848d9ba788..fb87c9eed05 100644 --- a/doc/classes/VisualShaderNodeRandomRange.xml +++ b/doc/classes/VisualShaderNodeRandomRange.xml @@ -1,5 +1,5 @@ - + A visual shader node that generates a pseudo-random scalar. diff --git a/doc/classes/VisualShaderNodeRemap.xml b/doc/classes/VisualShaderNodeRemap.xml index d4ecb2dd317..370adf5cf27 100644 --- a/doc/classes/VisualShaderNodeRemap.xml +++ b/doc/classes/VisualShaderNodeRemap.xml @@ -1,5 +1,5 @@ - + A visual shader node for remap function. diff --git a/doc/classes/VisualShaderNodeReroute.xml b/doc/classes/VisualShaderNodeReroute.xml index 1baaa7bbb66..c11aefc42e7 100644 --- a/doc/classes/VisualShaderNodeReroute.xml +++ b/doc/classes/VisualShaderNodeReroute.xml @@ -1,5 +1,5 @@ - + A node that allows rerouting a connection within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeResizableBase.xml b/doc/classes/VisualShaderNodeResizableBase.xml index 14058d1ade2..9259736cdd0 100644 --- a/doc/classes/VisualShaderNodeResizableBase.xml +++ b/doc/classes/VisualShaderNodeResizableBase.xml @@ -1,5 +1,5 @@ - + Base class for resizable nodes in a visual shader graph. diff --git a/doc/classes/VisualShaderNodeRotationByAxis.xml b/doc/classes/VisualShaderNodeRotationByAxis.xml index 8a4fbc89d8e..ff714f98581 100644 --- a/doc/classes/VisualShaderNodeRotationByAxis.xml +++ b/doc/classes/VisualShaderNodeRotationByAxis.xml @@ -1,5 +1,5 @@ - + A visual shader node that modifies the rotation of the object using a rotation matrix. diff --git a/doc/classes/VisualShaderNodeSDFRaymarch.xml b/doc/classes/VisualShaderNodeSDFRaymarch.xml index ad202320d57..1b90ea284ff 100644 --- a/doc/classes/VisualShaderNodeSDFRaymarch.xml +++ b/doc/classes/VisualShaderNodeSDFRaymarch.xml @@ -1,5 +1,5 @@ - + SDF raymarching algorithm to be used within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeSDFToScreenUV.xml b/doc/classes/VisualShaderNodeSDFToScreenUV.xml index 54df82ef4c6..24da65d7930 100644 --- a/doc/classes/VisualShaderNodeSDFToScreenUV.xml +++ b/doc/classes/VisualShaderNodeSDFToScreenUV.xml @@ -1,5 +1,5 @@ - + A function to convert an SDF (signed-distance field) to screen UV, to be used within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeSample3D.xml b/doc/classes/VisualShaderNodeSample3D.xml index de76b025579..e51abbf4738 100644 --- a/doc/classes/VisualShaderNodeSample3D.xml +++ b/doc/classes/VisualShaderNodeSample3D.xml @@ -1,5 +1,5 @@ - + A base node for nodes which samples 3D textures in the visual shader graph. diff --git a/doc/classes/VisualShaderNodeScreenNormalWorldSpace.xml b/doc/classes/VisualShaderNodeScreenNormalWorldSpace.xml index ccffb621382..30e298566a8 100644 --- a/doc/classes/VisualShaderNodeScreenNormalWorldSpace.xml +++ b/doc/classes/VisualShaderNodeScreenNormalWorldSpace.xml @@ -1,5 +1,5 @@ - + A visual shader node that unpacks the screen normal texture in World Space. diff --git a/doc/classes/VisualShaderNodeScreenUVToSDF.xml b/doc/classes/VisualShaderNodeScreenUVToSDF.xml index 81be77178a0..99c1bd6ea55 100644 --- a/doc/classes/VisualShaderNodeScreenUVToSDF.xml +++ b/doc/classes/VisualShaderNodeScreenUVToSDF.xml @@ -1,5 +1,5 @@ - + A function to convert screen UV to an SDF (signed-distance field), to be used within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeSmoothStep.xml b/doc/classes/VisualShaderNodeSmoothStep.xml index ec1303ce955..e5c27095fd6 100644 --- a/doc/classes/VisualShaderNodeSmoothStep.xml +++ b/doc/classes/VisualShaderNodeSmoothStep.xml @@ -1,5 +1,5 @@ - + Calculates a SmoothStep function within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeStep.xml b/doc/classes/VisualShaderNodeStep.xml index febc960b8c0..b35b8c8f15e 100644 --- a/doc/classes/VisualShaderNodeStep.xml +++ b/doc/classes/VisualShaderNodeStep.xml @@ -1,5 +1,5 @@ - + Calculates a Step function within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeSwitch.xml b/doc/classes/VisualShaderNodeSwitch.xml index a44ca3f0b3d..9fc0490653a 100644 --- a/doc/classes/VisualShaderNodeSwitch.xml +++ b/doc/classes/VisualShaderNodeSwitch.xml @@ -1,5 +1,5 @@ - + A selector function for use within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeTexture.xml b/doc/classes/VisualShaderNodeTexture.xml index 66b2e859ddc..ccb930626e1 100644 --- a/doc/classes/VisualShaderNodeTexture.xml +++ b/doc/classes/VisualShaderNodeTexture.xml @@ -1,5 +1,5 @@ - + Performs a 2D texture lookup within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeTexture2DArray.xml b/doc/classes/VisualShaderNodeTexture2DArray.xml index bdf5a428211..88347ff43f3 100644 --- a/doc/classes/VisualShaderNodeTexture2DArray.xml +++ b/doc/classes/VisualShaderNodeTexture2DArray.xml @@ -1,5 +1,5 @@ - + A 2D texture uniform array to be used within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeTexture2DArrayParameter.xml b/doc/classes/VisualShaderNodeTexture2DArrayParameter.xml index 8da859958af..d74151ef9fb 100644 --- a/doc/classes/VisualShaderNodeTexture2DArrayParameter.xml +++ b/doc/classes/VisualShaderNodeTexture2DArrayParameter.xml @@ -1,5 +1,5 @@ - + A visual shader node for shader parameter (uniform) of type [Texture2DArray]. diff --git a/doc/classes/VisualShaderNodeTexture2DParameter.xml b/doc/classes/VisualShaderNodeTexture2DParameter.xml index 39290e6b2aa..71ff1979e62 100644 --- a/doc/classes/VisualShaderNodeTexture2DParameter.xml +++ b/doc/classes/VisualShaderNodeTexture2DParameter.xml @@ -1,5 +1,5 @@ - + Provides a 2D texture parameter within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeTexture3D.xml b/doc/classes/VisualShaderNodeTexture3D.xml index b6cf18e868a..248a32f3b9e 100644 --- a/doc/classes/VisualShaderNodeTexture3D.xml +++ b/doc/classes/VisualShaderNodeTexture3D.xml @@ -1,5 +1,5 @@ - + Performs a 3D texture lookup within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeTexture3DParameter.xml b/doc/classes/VisualShaderNodeTexture3DParameter.xml index ceab1834d57..35c44cee227 100644 --- a/doc/classes/VisualShaderNodeTexture3DParameter.xml +++ b/doc/classes/VisualShaderNodeTexture3DParameter.xml @@ -1,5 +1,5 @@ - + Provides a 3D texture parameter within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeTextureParameter.xml b/doc/classes/VisualShaderNodeTextureParameter.xml index f425444a81f..7467dc48909 100644 --- a/doc/classes/VisualShaderNodeTextureParameter.xml +++ b/doc/classes/VisualShaderNodeTextureParameter.xml @@ -1,5 +1,5 @@ - + Performs a uniform texture lookup within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeTextureParameterTriplanar.xml b/doc/classes/VisualShaderNodeTextureParameterTriplanar.xml index 95f2f01652c..b94723d0309 100644 --- a/doc/classes/VisualShaderNodeTextureParameterTriplanar.xml +++ b/doc/classes/VisualShaderNodeTextureParameterTriplanar.xml @@ -1,5 +1,5 @@ - + Performs a uniform texture lookup with triplanar within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeTextureSDF.xml b/doc/classes/VisualShaderNodeTextureSDF.xml index ead987e1721..89c7a84212e 100644 --- a/doc/classes/VisualShaderNodeTextureSDF.xml +++ b/doc/classes/VisualShaderNodeTextureSDF.xml @@ -1,5 +1,5 @@ - + Performs an SDF (signed-distance field) texture lookup within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeTextureSDFNormal.xml b/doc/classes/VisualShaderNodeTextureSDFNormal.xml index 70ce525dbae..99ef619e03a 100644 --- a/doc/classes/VisualShaderNodeTextureSDFNormal.xml +++ b/doc/classes/VisualShaderNodeTextureSDFNormal.xml @@ -1,5 +1,5 @@ - + Performs an SDF (signed-distance field) normal texture lookup within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeTransformCompose.xml b/doc/classes/VisualShaderNodeTransformCompose.xml index 6418d2a7296..00ac7cc03ec 100644 --- a/doc/classes/VisualShaderNodeTransformCompose.xml +++ b/doc/classes/VisualShaderNodeTransformCompose.xml @@ -1,5 +1,5 @@ - + Composes a [Transform3D] from four [Vector3]s within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeTransformConstant.xml b/doc/classes/VisualShaderNodeTransformConstant.xml index ed3f039a83a..4d5fe487f9b 100644 --- a/doc/classes/VisualShaderNodeTransformConstant.xml +++ b/doc/classes/VisualShaderNodeTransformConstant.xml @@ -1,5 +1,5 @@ - + A [Transform3D] constant for use within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeTransformDecompose.xml b/doc/classes/VisualShaderNodeTransformDecompose.xml index 0d1403ea1d6..9d8034a7914 100644 --- a/doc/classes/VisualShaderNodeTransformDecompose.xml +++ b/doc/classes/VisualShaderNodeTransformDecompose.xml @@ -1,5 +1,5 @@ - + Decomposes a [Transform3D] into four [Vector3]s within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeTransformFunc.xml b/doc/classes/VisualShaderNodeTransformFunc.xml index a753c77e0b8..6f14e22144b 100644 --- a/doc/classes/VisualShaderNodeTransformFunc.xml +++ b/doc/classes/VisualShaderNodeTransformFunc.xml @@ -1,5 +1,5 @@ - + Computes a [Transform3D] function within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeTransformOp.xml b/doc/classes/VisualShaderNodeTransformOp.xml index 9261e9adc00..10fea606f27 100644 --- a/doc/classes/VisualShaderNodeTransformOp.xml +++ b/doc/classes/VisualShaderNodeTransformOp.xml @@ -1,5 +1,5 @@ - + A [Transform3D] operator to be used within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeTransformParameter.xml b/doc/classes/VisualShaderNodeTransformParameter.xml index 9927ec30fec..c5b061550ae 100644 --- a/doc/classes/VisualShaderNodeTransformParameter.xml +++ b/doc/classes/VisualShaderNodeTransformParameter.xml @@ -1,5 +1,5 @@ - + A [Transform3D] parameter for use within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeTransformVecMult.xml b/doc/classes/VisualShaderNodeTransformVecMult.xml index c461b7986bb..b8fd8ea59f2 100644 --- a/doc/classes/VisualShaderNodeTransformVecMult.xml +++ b/doc/classes/VisualShaderNodeTransformVecMult.xml @@ -1,5 +1,5 @@ - + Multiplies a [Transform3D] and a [Vector3] within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeUIntConstant.xml b/doc/classes/VisualShaderNodeUIntConstant.xml index a5b82ea5a92..10be47abe66 100644 --- a/doc/classes/VisualShaderNodeUIntConstant.xml +++ b/doc/classes/VisualShaderNodeUIntConstant.xml @@ -1,5 +1,5 @@ - + An unsigned scalar integer constant to be used within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeUIntFunc.xml b/doc/classes/VisualShaderNodeUIntFunc.xml index dee14c60251..432c604f573 100644 --- a/doc/classes/VisualShaderNodeUIntFunc.xml +++ b/doc/classes/VisualShaderNodeUIntFunc.xml @@ -1,5 +1,5 @@ - + An unsigned scalar integer function to be used within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeUIntOp.xml b/doc/classes/VisualShaderNodeUIntOp.xml index 5dd2d54e419..4d2e66f2192 100644 --- a/doc/classes/VisualShaderNodeUIntOp.xml +++ b/doc/classes/VisualShaderNodeUIntOp.xml @@ -1,5 +1,5 @@ - + An unsigned integer scalar operator to be used within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeUIntParameter.xml b/doc/classes/VisualShaderNodeUIntParameter.xml index ebdfe032f09..387479c1b18 100644 --- a/doc/classes/VisualShaderNodeUIntParameter.xml +++ b/doc/classes/VisualShaderNodeUIntParameter.xml @@ -1,5 +1,5 @@ - + A visual shader node for shader parameter (uniform) of type unsigned [int]. diff --git a/doc/classes/VisualShaderNodeUVFunc.xml b/doc/classes/VisualShaderNodeUVFunc.xml index c4bb8b600e9..ab5b447c84f 100644 --- a/doc/classes/VisualShaderNodeUVFunc.xml +++ b/doc/classes/VisualShaderNodeUVFunc.xml @@ -1,5 +1,5 @@ - + Contains functions to modify texture coordinates ([code]uv[/code]) to be used within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeUVPolarCoord.xml b/doc/classes/VisualShaderNodeUVPolarCoord.xml index 8edb3ec51fe..4330d31ccea 100644 --- a/doc/classes/VisualShaderNodeUVPolarCoord.xml +++ b/doc/classes/VisualShaderNodeUVPolarCoord.xml @@ -1,5 +1,5 @@ - + A visual shader node that modifies the texture UV using polar coordinates. diff --git a/doc/classes/VisualShaderNodeVarying.xml b/doc/classes/VisualShaderNodeVarying.xml index 20f15b417ec..360674556e1 100644 --- a/doc/classes/VisualShaderNodeVarying.xml +++ b/doc/classes/VisualShaderNodeVarying.xml @@ -1,5 +1,5 @@ - + A visual shader node that represents a "varying" shader value. diff --git a/doc/classes/VisualShaderNodeVaryingGetter.xml b/doc/classes/VisualShaderNodeVaryingGetter.xml index 5e050fb04ca..0cb27866b9c 100644 --- a/doc/classes/VisualShaderNodeVaryingGetter.xml +++ b/doc/classes/VisualShaderNodeVaryingGetter.xml @@ -1,5 +1,5 @@ - + A visual shader node that gets a value of a varying. diff --git a/doc/classes/VisualShaderNodeVaryingSetter.xml b/doc/classes/VisualShaderNodeVaryingSetter.xml index fbb620ccbd8..cc06da3d531 100644 --- a/doc/classes/VisualShaderNodeVaryingSetter.xml +++ b/doc/classes/VisualShaderNodeVaryingSetter.xml @@ -1,5 +1,5 @@ - + A visual shader node that sets a value of a varying. diff --git a/doc/classes/VisualShaderNodeVec2Constant.xml b/doc/classes/VisualShaderNodeVec2Constant.xml index d2e7dc9c1d3..5c6dd11a11f 100644 --- a/doc/classes/VisualShaderNodeVec2Constant.xml +++ b/doc/classes/VisualShaderNodeVec2Constant.xml @@ -1,5 +1,5 @@ - + A [Vector2] constant to be used within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeVec2Parameter.xml b/doc/classes/VisualShaderNodeVec2Parameter.xml index 2e939d38233..14a5e52e2c7 100644 --- a/doc/classes/VisualShaderNodeVec2Parameter.xml +++ b/doc/classes/VisualShaderNodeVec2Parameter.xml @@ -1,5 +1,5 @@ - + A [Vector2] parameter to be used within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeVec3Constant.xml b/doc/classes/VisualShaderNodeVec3Constant.xml index d8e0c3f6641..dc09353a759 100644 --- a/doc/classes/VisualShaderNodeVec3Constant.xml +++ b/doc/classes/VisualShaderNodeVec3Constant.xml @@ -1,5 +1,5 @@ - + A [Vector3] constant to be used within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeVec3Parameter.xml b/doc/classes/VisualShaderNodeVec3Parameter.xml index f94ce329c79..3f5419bfb07 100644 --- a/doc/classes/VisualShaderNodeVec3Parameter.xml +++ b/doc/classes/VisualShaderNodeVec3Parameter.xml @@ -1,5 +1,5 @@ - + A [Vector3] parameter to be used within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeVec4Constant.xml b/doc/classes/VisualShaderNodeVec4Constant.xml index 93d8c89b343..abcd4a4d164 100644 --- a/doc/classes/VisualShaderNodeVec4Constant.xml +++ b/doc/classes/VisualShaderNodeVec4Constant.xml @@ -1,5 +1,5 @@ - + A 4D vector constant to be used within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeVec4Parameter.xml b/doc/classes/VisualShaderNodeVec4Parameter.xml index e4153beab64..fe42b960127 100644 --- a/doc/classes/VisualShaderNodeVec4Parameter.xml +++ b/doc/classes/VisualShaderNodeVec4Parameter.xml @@ -1,5 +1,5 @@ - + A 4D vector parameter to be used within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeVectorBase.xml b/doc/classes/VisualShaderNodeVectorBase.xml index dee05a97298..90db91279d6 100644 --- a/doc/classes/VisualShaderNodeVectorBase.xml +++ b/doc/classes/VisualShaderNodeVectorBase.xml @@ -1,5 +1,5 @@ - + A base type for the nodes that perform vector operations within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeVectorCompose.xml b/doc/classes/VisualShaderNodeVectorCompose.xml index 8f25c8f3c2b..60ea849383e 100644 --- a/doc/classes/VisualShaderNodeVectorCompose.xml +++ b/doc/classes/VisualShaderNodeVectorCompose.xml @@ -1,5 +1,5 @@ - + Composes a [Vector2], [Vector3] or 4D vector (represented as a [Quaternion]) from scalars within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeVectorDecompose.xml b/doc/classes/VisualShaderNodeVectorDecompose.xml index 7a9e977150a..e8aaeb2d1b8 100644 --- a/doc/classes/VisualShaderNodeVectorDecompose.xml +++ b/doc/classes/VisualShaderNodeVectorDecompose.xml @@ -1,5 +1,5 @@ - + Decomposes a [Vector2], [Vector3] or 4D vector (represented as a [Quaternion]) into scalars within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeVectorDistance.xml b/doc/classes/VisualShaderNodeVectorDistance.xml index dad2e0366f0..bfa277678d2 100644 --- a/doc/classes/VisualShaderNodeVectorDistance.xml +++ b/doc/classes/VisualShaderNodeVectorDistance.xml @@ -1,5 +1,5 @@ - + Returns the distance between two points. To be used within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeVectorFunc.xml b/doc/classes/VisualShaderNodeVectorFunc.xml index 6215d60bd59..acf47f0bd8f 100644 --- a/doc/classes/VisualShaderNodeVectorFunc.xml +++ b/doc/classes/VisualShaderNodeVectorFunc.xml @@ -1,5 +1,5 @@ - + A vector function to be used within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeVectorLen.xml b/doc/classes/VisualShaderNodeVectorLen.xml index a458b0b6168..9ac5639504c 100644 --- a/doc/classes/VisualShaderNodeVectorLen.xml +++ b/doc/classes/VisualShaderNodeVectorLen.xml @@ -1,5 +1,5 @@ - + Returns the length of a [Vector3] within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeVectorOp.xml b/doc/classes/VisualShaderNodeVectorOp.xml index 7a4b68c1470..76566c5741e 100644 --- a/doc/classes/VisualShaderNodeVectorOp.xml +++ b/doc/classes/VisualShaderNodeVectorOp.xml @@ -1,5 +1,5 @@ - + A vector operator to be used within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeVectorRefract.xml b/doc/classes/VisualShaderNodeVectorRefract.xml index 384175e8d76..7581e372b51 100644 --- a/doc/classes/VisualShaderNodeVectorRefract.xml +++ b/doc/classes/VisualShaderNodeVectorRefract.xml @@ -1,5 +1,5 @@ - + Returns the vector that points in the direction of refraction. For use within the visual shader graph. diff --git a/doc/classes/VisualShaderNodeWorldPositionFromDepth.xml b/doc/classes/VisualShaderNodeWorldPositionFromDepth.xml index 9c9016e8898..94c2bf8a3be 100644 --- a/doc/classes/VisualShaderNodeWorldPositionFromDepth.xml +++ b/doc/classes/VisualShaderNodeWorldPositionFromDepth.xml @@ -1,5 +1,5 @@ - + A visual shader node that calculates the position of the pixel in world space using the depth texture. diff --git a/doc/classes/VoxelGI.xml b/doc/classes/VoxelGI.xml index c92501a42bc..278d9f037a7 100644 --- a/doc/classes/VoxelGI.xml +++ b/doc/classes/VoxelGI.xml @@ -1,5 +1,5 @@ - + Real-time global illumination (GI) probe. diff --git a/doc/classes/VoxelGIData.xml b/doc/classes/VoxelGIData.xml index 6889f271ce3..4679e0a48d4 100644 --- a/doc/classes/VoxelGIData.xml +++ b/doc/classes/VoxelGIData.xml @@ -1,5 +1,5 @@ - + Contains baked voxel global illumination data for use in a [VoxelGI] node. diff --git a/doc/classes/WeakRef.xml b/doc/classes/WeakRef.xml index c775dbe6eca..7465c107707 100644 --- a/doc/classes/WeakRef.xml +++ b/doc/classes/WeakRef.xml @@ -1,5 +1,5 @@ - + Holds an [Object]. If the object is [RefCounted], it doesn't update the reference count. diff --git a/doc/classes/Window.xml b/doc/classes/Window.xml index 19f8050c315..8746316fe86 100644 --- a/doc/classes/Window.xml +++ b/doc/classes/Window.xml @@ -1,5 +1,5 @@ - + Base class for all windows, dialogs, and popups. diff --git a/doc/classes/WorkerThreadPool.xml b/doc/classes/WorkerThreadPool.xml index 24fe91be028..34d5a7d5897 100644 --- a/doc/classes/WorkerThreadPool.xml +++ b/doc/classes/WorkerThreadPool.xml @@ -1,5 +1,5 @@ - + A singleton that allocates some [Thread]s on startup, used to offload tasks to these threads. diff --git a/doc/classes/World2D.xml b/doc/classes/World2D.xml index c2e617d6e9e..daea618d46c 100644 --- a/doc/classes/World2D.xml +++ b/doc/classes/World2D.xml @@ -1,5 +1,5 @@ - + A resource that holds all components of a 2D world, such as a canvas and a physics space. diff --git a/doc/classes/World3D.xml b/doc/classes/World3D.xml index 8cdc2c3522a..41aa7f9101d 100644 --- a/doc/classes/World3D.xml +++ b/doc/classes/World3D.xml @@ -1,5 +1,5 @@ - + A resource that holds all components of a 3D world, such as a visual scenario and a physics space. diff --git a/doc/classes/WorldBoundaryShape2D.xml b/doc/classes/WorldBoundaryShape2D.xml index ee1aa8d2249..55f869cb0ba 100644 --- a/doc/classes/WorldBoundaryShape2D.xml +++ b/doc/classes/WorldBoundaryShape2D.xml @@ -1,5 +1,5 @@ - + A 2D world boundary (half-plane) shape used for physics collision. diff --git a/doc/classes/WorldBoundaryShape3D.xml b/doc/classes/WorldBoundaryShape3D.xml index 0770dd51211..9889aeb7651 100644 --- a/doc/classes/WorldBoundaryShape3D.xml +++ b/doc/classes/WorldBoundaryShape3D.xml @@ -1,5 +1,5 @@ - + A 3D world boundary (half-space) shape used for physics collision. diff --git a/doc/classes/WorldEnvironment.xml b/doc/classes/WorldEnvironment.xml index 80dc46ae934..6983d40f6b3 100644 --- a/doc/classes/WorldEnvironment.xml +++ b/doc/classes/WorldEnvironment.xml @@ -1,5 +1,5 @@ - + Default environment properties for the entire scene (post-processing effects, lighting and background settings). diff --git a/doc/classes/X509Certificate.xml b/doc/classes/X509Certificate.xml index a4148792e5b..e759f4e2d57 100644 --- a/doc/classes/X509Certificate.xml +++ b/doc/classes/X509Certificate.xml @@ -1,5 +1,5 @@ - + An X509 certificate (e.g. for TLS). diff --git a/doc/classes/XMLParser.xml b/doc/classes/XMLParser.xml index 1767ebc0c64..09ccf39ad8e 100644 --- a/doc/classes/XMLParser.xml +++ b/doc/classes/XMLParser.xml @@ -1,5 +1,5 @@ - + Provides a low-level interface for creating parsers for XML files. diff --git a/doc/classes/XRAnchor3D.xml b/doc/classes/XRAnchor3D.xml index 4b5e90c51ef..3ef068153ba 100644 --- a/doc/classes/XRAnchor3D.xml +++ b/doc/classes/XRAnchor3D.xml @@ -1,5 +1,5 @@ - + An anchor point in AR space. diff --git a/doc/classes/XRBodyModifier3D.xml b/doc/classes/XRBodyModifier3D.xml index d08b92a56c8..4fdc4c146c4 100644 --- a/doc/classes/XRBodyModifier3D.xml +++ b/doc/classes/XRBodyModifier3D.xml @@ -1,5 +1,5 @@ - + A node for driving body meshes from [XRBodyTracker] data. diff --git a/doc/classes/XRBodyTracker.xml b/doc/classes/XRBodyTracker.xml index 4945fada0eb..a125c946aeb 100644 --- a/doc/classes/XRBodyTracker.xml +++ b/doc/classes/XRBodyTracker.xml @@ -1,5 +1,5 @@ - + A tracked body in XR. diff --git a/doc/classes/XRCamera3D.xml b/doc/classes/XRCamera3D.xml index 73d632c56b2..01c68185c5c 100644 --- a/doc/classes/XRCamera3D.xml +++ b/doc/classes/XRCamera3D.xml @@ -1,5 +1,5 @@ - + A camera node which automatically positions itself based on XR tracking data. diff --git a/doc/classes/XRController3D.xml b/doc/classes/XRController3D.xml index f37c69f93a3..bd49f10b0d4 100644 --- a/doc/classes/XRController3D.xml +++ b/doc/classes/XRController3D.xml @@ -1,5 +1,5 @@ - + A 3D node representing a spatially-tracked controller. diff --git a/doc/classes/XRControllerTracker.xml b/doc/classes/XRControllerTracker.xml index 50727a7633a..c5589d67b1f 100644 --- a/doc/classes/XRControllerTracker.xml +++ b/doc/classes/XRControllerTracker.xml @@ -1,5 +1,5 @@ - + A tracked controller. diff --git a/doc/classes/XRFaceModifier3D.xml b/doc/classes/XRFaceModifier3D.xml index 9fb51575606..96fe85aaa49 100644 --- a/doc/classes/XRFaceModifier3D.xml +++ b/doc/classes/XRFaceModifier3D.xml @@ -1,5 +1,5 @@ - + A node for driving standard face meshes from [XRFaceTracker] weights. diff --git a/doc/classes/XRFaceTracker.xml b/doc/classes/XRFaceTracker.xml index 23a9a9cb171..590aa4e4f99 100644 --- a/doc/classes/XRFaceTracker.xml +++ b/doc/classes/XRFaceTracker.xml @@ -1,5 +1,5 @@ - + A tracked face. diff --git a/doc/classes/XRHandModifier3D.xml b/doc/classes/XRHandModifier3D.xml index 09ff3210707..2178e9978c6 100644 --- a/doc/classes/XRHandModifier3D.xml +++ b/doc/classes/XRHandModifier3D.xml @@ -1,5 +1,5 @@ - + A node for driving hand meshes from [XRHandTracker] data. diff --git a/doc/classes/XRHandTracker.xml b/doc/classes/XRHandTracker.xml index cba010ce186..101b1ac69eb 100644 --- a/doc/classes/XRHandTracker.xml +++ b/doc/classes/XRHandTracker.xml @@ -1,5 +1,5 @@ - + A tracked hand in XR. diff --git a/doc/classes/XRInterface.xml b/doc/classes/XRInterface.xml index ede1ce31e78..3b19e2fe103 100644 --- a/doc/classes/XRInterface.xml +++ b/doc/classes/XRInterface.xml @@ -1,5 +1,5 @@ - + Base class for an XR interface implementation. diff --git a/doc/classes/XRInterfaceExtension.xml b/doc/classes/XRInterfaceExtension.xml index 4e1e248e5fa..3220d70b34b 100644 --- a/doc/classes/XRInterfaceExtension.xml +++ b/doc/classes/XRInterfaceExtension.xml @@ -1,5 +1,5 @@ - + Base class for XR interface extensions (plugins). diff --git a/doc/classes/XRNode3D.xml b/doc/classes/XRNode3D.xml index 1ab4adaf46c..1f1861694cd 100644 --- a/doc/classes/XRNode3D.xml +++ b/doc/classes/XRNode3D.xml @@ -1,5 +1,5 @@ - + A 3D node that has its position automatically updated by the [XRServer]. diff --git a/doc/classes/XROrigin3D.xml b/doc/classes/XROrigin3D.xml index 041e8cd7aa5..b85000943d4 100644 --- a/doc/classes/XROrigin3D.xml +++ b/doc/classes/XROrigin3D.xml @@ -1,5 +1,5 @@ - + The origin point in AR/VR. diff --git a/doc/classes/XRPose.xml b/doc/classes/XRPose.xml index 76c1ced3527..c15b4f912e9 100644 --- a/doc/classes/XRPose.xml +++ b/doc/classes/XRPose.xml @@ -1,5 +1,5 @@ - + This object contains all data related to a pose on a tracked object. diff --git a/doc/classes/XRPositionalTracker.xml b/doc/classes/XRPositionalTracker.xml index 75b28f3940d..78a8fad5b7d 100644 --- a/doc/classes/XRPositionalTracker.xml +++ b/doc/classes/XRPositionalTracker.xml @@ -1,5 +1,5 @@ - + A tracked object. diff --git a/doc/classes/XRServer.xml b/doc/classes/XRServer.xml index d4f1f6cc519..9d5c2b1ccca 100644 --- a/doc/classes/XRServer.xml +++ b/doc/classes/XRServer.xml @@ -1,5 +1,5 @@ - + Server for AR and VR features. diff --git a/doc/classes/XRTracker.xml b/doc/classes/XRTracker.xml index 78ff68258cd..0f82da60344 100644 --- a/doc/classes/XRTracker.xml +++ b/doc/classes/XRTracker.xml @@ -1,5 +1,5 @@ - + A tracked object. diff --git a/doc/classes/XRVRS.xml b/doc/classes/XRVRS.xml index ec92d4a667a..67dcbda3b8a 100644 --- a/doc/classes/XRVRS.xml +++ b/doc/classes/XRVRS.xml @@ -1,5 +1,5 @@ - + Helper class for XR interfaces that generates VRS images. diff --git a/doc/tools/make_rst.py b/doc/tools/make_rst.py index 4a3cbd49db8..f95a9784448 100755 --- a/doc/tools/make_rst.py +++ b/doc/tools/make_rst.py @@ -102,19 +102,14 @@ CLASS_GROUPS: dict[str, str] = { "editor": "Editor-only", "variant": "Variant types", } + CLASS_GROUPS_BASE: dict[str, str] = { "node": "Node", "resource": "Resource", "object": "Object", "variant": "Variant", } -# Sync with editor\register_editor_types.cpp -EDITOR_CLASSES: list[str] = [ - "FileSystemDock", - "ScriptCreateDialog", - "ScriptEditor", - "ScriptEditorBase", -] + # Sync with the types mentioned in https://docs.godotengine.org/en/stable/tutorials/scripting/c_sharp/c_sharp_differences.html CLASSES_WITH_CSHARP_DIFFERENCES: list[str] = [ "@GlobalScope", @@ -184,6 +179,8 @@ class State: if inherits is not None: class_def.inherits = inherits + class_def.api_type = class_root.get("api_type") + class_def.deprecated = class_root.get("deprecated") class_def.experimental = class_root.get("experimental") @@ -595,8 +592,8 @@ class ClassDef(DefinitionBase): def __init__(self, name: str) -> None: super().__init__("class", name) - self.class_group = "variant" - self.editor_class = self._is_editor_class() + self.class_group: str = "variant" + self.api_type: str | None = None self.constants: OrderedDict[str, ConstantDef] = OrderedDict() self.enums: OrderedDict[str, EnumDef] = OrderedDict() @@ -616,14 +613,6 @@ class ClassDef(DefinitionBase): # Used to match the class with XML source for output filtering purposes. self.filepath: str = "" - def _is_editor_class(self) -> bool: - if self.name.startswith("Editor"): - return True - if self.name in EDITOR_CLASSES: - return True - - return False - def update_class_group(self, state: State) -> None: group_name = "variant" @@ -799,7 +788,7 @@ def main() -> None: grouped_classes[class_def.class_group] = [] grouped_classes[class_def.class_group].append(class_name) - if class_def.editor_class: + if class_def.api_type == "editor": if "editor" not in grouped_classes: grouped_classes["editor"] = [] grouped_classes["editor"].append(class_name) diff --git a/editor/doc/doc_tools.cpp b/editor/doc/doc_tools.cpp index bc8ab99b77f..0460735ff58 100644 --- a/editor/doc/doc_tools.cpp +++ b/editor/doc/doc_tools.cpp @@ -446,16 +446,33 @@ void DocTools::generate(BitField p_flags) { continue; } - const String &cname = name; // Property setters and getters do not get exposed as individual methods. HashSet setters_getters; - class_list[cname] = DocData::ClassDoc(); - DocData::ClassDoc &c = class_list[cname]; - c.name = cname; + class_list[name] = DocData::ClassDoc(); + DocData::ClassDoc &c = class_list[name]; + c.name = name; c.inherits = ClassDB::get_parent_class(name); - inheriting[c.inherits].insert(cname); + inheriting[c.inherits].insert(name); + + switch (ClassDB::get_api_type(name)) { + case ClassDB::API_CORE: + c.api_type = "core"; + break; + case ClassDB::API_EDITOR: + c.api_type = "editor"; + break; + case ClassDB::API_EXTENSION: + c.api_type = "extension"; + break; + case ClassDB::API_EDITOR_EXTENSION: + c.api_type = "editor_extension"; + break; + case ClassDB::API_NONE: + c.api_type = String(); + break; + } List properties; List own_properties; @@ -730,7 +747,7 @@ void DocTools::generate(BitField p_flags) { // Theme items. { List theme_items; - ThemeDB::get_singleton()->get_class_items(cname, &theme_items); + ThemeDB::get_singleton()->get_class_items(name, &theme_items); Ref default_theme = ThemeDB::get_singleton()->get_default_theme(); for (const ThemeDB::ThemeItemBind &theme_item : theme_items) { @@ -767,7 +784,7 @@ void DocTools::generate(BitField p_flags) { } if (theme_item.data_type == Theme::DATA_TYPE_COLOR || theme_item.data_type == Theme::DATA_TYPE_CONSTANT) { - tid.default_value = DocData::get_default_value_string(default_theme->get_theme_item(theme_item.data_type, theme_item.item_name, cname)); + tid.default_value = DocData::get_default_value_string(default_theme->get_theme_item(theme_item.data_type, theme_item.item_name, name)); } c.theme_properties.push_back(tid); @@ -1335,7 +1352,7 @@ Error DocTools::_load(Ref parser) { ERR_FAIL_COND_V(parser->get_node_name() != "class", ERR_FILE_CORRUPT); ERR_FAIL_COND_V(!parser->has_attribute("name"), ERR_FILE_CORRUPT); - String name = parser->get_named_attribute_value("name"); + const String name = parser->get_named_attribute_value("name"); class_list[name] = DocData::ClassDoc(); DocData::ClassDoc &c = class_list[name]; @@ -1346,6 +1363,10 @@ Error DocTools::_load(Ref parser) { inheriting[c.inherits].insert(name); + if (parser->has_attribute("api_type")) { + c.api_type = parser->get_named_attribute_value("api_type"); + } + #ifndef DISABLE_DEPRECATED if (parser->has_attribute("is_deprecated")) { c.is_deprecated = parser->get_named_attribute_value("is_deprecated").to_lower() == "true"; @@ -1685,12 +1706,15 @@ Error DocTools::save_classes(const String &p_default_path, const HashMap(); for (const StringName &name : child_classes) { - ClassDB::APIType class_api = ClassDB::get_api_type(name); - if (class_api != ClassDB::API_EDITOR && class_api == ClassDB::API_CORE) { + if (ClassDB::get_api_type(name) == ClassDB::API_CORE) { _fill_classes_from(class_item, name, p_selected); } } diff --git a/editor/settings/editor_feature_profile.cpp b/editor/settings/editor_feature_profile.cpp index 29eddfba8c6..d4ab503b9e6 100644 --- a/editor/settings/editor_feature_profile.cpp +++ b/editor/settings/editor_feature_profile.cpp @@ -562,7 +562,7 @@ void EditorFeatureProfileManager::_fill_classes_from(TreeItem *p_parent, const S child_classes.sort_custom(); for (const StringName &name : child_classes) { - if (String(name).begins_with("Editor") || ClassDB::get_api_type(name) != ClassDB::API_CORE) { + if (ClassDB::get_api_type(name) != ClassDB::API_CORE) { continue; } _fill_classes_from(class_item, name, p_selected); diff --git a/modules/csg/doc_classes/CSGBox3D.xml b/modules/csg/doc_classes/CSGBox3D.xml index f56cb355ca8..b152177d9ee 100644 --- a/modules/csg/doc_classes/CSGBox3D.xml +++ b/modules/csg/doc_classes/CSGBox3D.xml @@ -1,5 +1,5 @@ - + A CSG Box shape. diff --git a/modules/csg/doc_classes/CSGCombiner3D.xml b/modules/csg/doc_classes/CSGCombiner3D.xml index d785b2f8182..58896587f21 100644 --- a/modules/csg/doc_classes/CSGCombiner3D.xml +++ b/modules/csg/doc_classes/CSGCombiner3D.xml @@ -1,5 +1,5 @@ - + A CSG node that allows you to combine other CSG modifiers. diff --git a/modules/csg/doc_classes/CSGCylinder3D.xml b/modules/csg/doc_classes/CSGCylinder3D.xml index f722b569e78..848df1bfe84 100644 --- a/modules/csg/doc_classes/CSGCylinder3D.xml +++ b/modules/csg/doc_classes/CSGCylinder3D.xml @@ -1,5 +1,5 @@ - + A CSG Cylinder shape. diff --git a/modules/csg/doc_classes/CSGMesh3D.xml b/modules/csg/doc_classes/CSGMesh3D.xml index 3dad3ef767f..1dae96b76ad 100644 --- a/modules/csg/doc_classes/CSGMesh3D.xml +++ b/modules/csg/doc_classes/CSGMesh3D.xml @@ -1,5 +1,5 @@ - + A CSG Mesh shape that uses a mesh resource. diff --git a/modules/csg/doc_classes/CSGPolygon3D.xml b/modules/csg/doc_classes/CSGPolygon3D.xml index 2f26f13aa1a..e2ba329a8ad 100644 --- a/modules/csg/doc_classes/CSGPolygon3D.xml +++ b/modules/csg/doc_classes/CSGPolygon3D.xml @@ -1,5 +1,5 @@ - + Extrudes a 2D polygon shape to create a 3D mesh. diff --git a/modules/csg/doc_classes/CSGPrimitive3D.xml b/modules/csg/doc_classes/CSGPrimitive3D.xml index 6afbf4a3d75..5602cbfb646 100644 --- a/modules/csg/doc_classes/CSGPrimitive3D.xml +++ b/modules/csg/doc_classes/CSGPrimitive3D.xml @@ -1,5 +1,5 @@ - + Base class for CSG primitives. diff --git a/modules/csg/doc_classes/CSGShape3D.xml b/modules/csg/doc_classes/CSGShape3D.xml index e52c3ebee9b..49ab3c7e0b0 100644 --- a/modules/csg/doc_classes/CSGShape3D.xml +++ b/modules/csg/doc_classes/CSGShape3D.xml @@ -1,5 +1,5 @@ - + The CSG base class. diff --git a/modules/csg/doc_classes/CSGSphere3D.xml b/modules/csg/doc_classes/CSGSphere3D.xml index a11979444e8..644e0223be1 100644 --- a/modules/csg/doc_classes/CSGSphere3D.xml +++ b/modules/csg/doc_classes/CSGSphere3D.xml @@ -1,5 +1,5 @@ - + A CSG Sphere shape. diff --git a/modules/csg/doc_classes/CSGTorus3D.xml b/modules/csg/doc_classes/CSGTorus3D.xml index 9bef522bb6f..73280568dbf 100644 --- a/modules/csg/doc_classes/CSGTorus3D.xml +++ b/modules/csg/doc_classes/CSGTorus3D.xml @@ -1,5 +1,5 @@ - + A CSG Torus shape. diff --git a/modules/enet/doc_classes/ENetConnection.xml b/modules/enet/doc_classes/ENetConnection.xml index 940d3be7588..f21f4cfa352 100644 --- a/modules/enet/doc_classes/ENetConnection.xml +++ b/modules/enet/doc_classes/ENetConnection.xml @@ -1,5 +1,5 @@ - + A wrapper class for an [url=http://enet.bespin.org/group__host.html]ENetHost[/url]. diff --git a/modules/enet/doc_classes/ENetMultiplayerPeer.xml b/modules/enet/doc_classes/ENetMultiplayerPeer.xml index c49d16eb131..4f4d5ff5e85 100644 --- a/modules/enet/doc_classes/ENetMultiplayerPeer.xml +++ b/modules/enet/doc_classes/ENetMultiplayerPeer.xml @@ -1,5 +1,5 @@ - + A MultiplayerPeer implementation using the [url=http://enet.bespin.org/index.html]ENet[/url] library. diff --git a/modules/enet/doc_classes/ENetPacketPeer.xml b/modules/enet/doc_classes/ENetPacketPeer.xml index 266ce8d9f51..f5858ff1ca1 100644 --- a/modules/enet/doc_classes/ENetPacketPeer.xml +++ b/modules/enet/doc_classes/ENetPacketPeer.xml @@ -1,5 +1,5 @@ - + A wrapper class for an [url=http://enet.bespin.org/group__peer.html]ENetPeer[/url]. diff --git a/modules/fbx/doc_classes/EditorSceneFormatImporterFBX2GLTF.xml b/modules/fbx/doc_classes/EditorSceneFormatImporterFBX2GLTF.xml index 3bf4e7ddc0d..6f2778ca769 100644 --- a/modules/fbx/doc_classes/EditorSceneFormatImporterFBX2GLTF.xml +++ b/modules/fbx/doc_classes/EditorSceneFormatImporterFBX2GLTF.xml @@ -1,5 +1,5 @@ - + Importer for the [code].fbx[/code] scene file format. diff --git a/modules/fbx/doc_classes/EditorSceneFormatImporterUFBX.xml b/modules/fbx/doc_classes/EditorSceneFormatImporterUFBX.xml index cab58b64cb9..0a9b603a442 100644 --- a/modules/fbx/doc_classes/EditorSceneFormatImporterUFBX.xml +++ b/modules/fbx/doc_classes/EditorSceneFormatImporterUFBX.xml @@ -1,5 +1,5 @@ - + Import FBX files using the ufbx library. diff --git a/modules/fbx/doc_classes/FBXDocument.xml b/modules/fbx/doc_classes/FBXDocument.xml index db1d77c0f11..810aec33493 100644 --- a/modules/fbx/doc_classes/FBXDocument.xml +++ b/modules/fbx/doc_classes/FBXDocument.xml @@ -1,5 +1,5 @@ - + Handles FBX documents. diff --git a/modules/fbx/doc_classes/FBXState.xml b/modules/fbx/doc_classes/FBXState.xml index 88c23181bc6..91fcb2a3199 100644 --- a/modules/fbx/doc_classes/FBXState.xml +++ b/modules/fbx/doc_classes/FBXState.xml @@ -1,5 +1,5 @@ - + diff --git a/modules/gdscript/doc_classes/GDScript.xml b/modules/gdscript/doc_classes/GDScript.xml index c3fa59dc23f..636c79754f9 100644 --- a/modules/gdscript/doc_classes/GDScript.xml +++ b/modules/gdscript/doc_classes/GDScript.xml @@ -1,5 +1,5 @@ - + A script implemented in the GDScript programming language. diff --git a/modules/gdscript/doc_classes/GDScriptLanguageProtocol.xml b/modules/gdscript/doc_classes/GDScriptLanguageProtocol.xml index 2553f657904..400154ef4f2 100644 --- a/modules/gdscript/doc_classes/GDScriptLanguageProtocol.xml +++ b/modules/gdscript/doc_classes/GDScriptLanguageProtocol.xml @@ -1,5 +1,5 @@ - + GDScript language server. diff --git a/modules/gdscript/doc_classes/GDScriptSyntaxHighlighter.xml b/modules/gdscript/doc_classes/GDScriptSyntaxHighlighter.xml index 63a92229015..099bb2d1f5c 100644 --- a/modules/gdscript/doc_classes/GDScriptSyntaxHighlighter.xml +++ b/modules/gdscript/doc_classes/GDScriptSyntaxHighlighter.xml @@ -1,5 +1,5 @@ - + A GDScript syntax highlighter that can be used with [TextEdit] and [CodeEdit] nodes. diff --git a/modules/gdscript/doc_classes/GDScriptTextDocument.xml b/modules/gdscript/doc_classes/GDScriptTextDocument.xml index de401616505..9a6eb1850fb 100644 --- a/modules/gdscript/doc_classes/GDScriptTextDocument.xml +++ b/modules/gdscript/doc_classes/GDScriptTextDocument.xml @@ -1,5 +1,5 @@ - + Document related language server functionality. diff --git a/modules/gdscript/doc_classes/GDScriptWorkspace.xml b/modules/gdscript/doc_classes/GDScriptWorkspace.xml index 883ddb17f40..e49f40317d1 100644 --- a/modules/gdscript/doc_classes/GDScriptWorkspace.xml +++ b/modules/gdscript/doc_classes/GDScriptWorkspace.xml @@ -1,5 +1,5 @@ - + Workspace related language server functionality. diff --git a/modules/gltf/doc_classes/EditorSceneFormatImporterBlend.xml b/modules/gltf/doc_classes/EditorSceneFormatImporterBlend.xml index 5d78aa4470a..1e0f9215af7 100644 --- a/modules/gltf/doc_classes/EditorSceneFormatImporterBlend.xml +++ b/modules/gltf/doc_classes/EditorSceneFormatImporterBlend.xml @@ -1,5 +1,5 @@ - + Importer for Blender's [code].blend[/code] scene file format. diff --git a/modules/gltf/doc_classes/EditorSceneFormatImporterGLTF.xml b/modules/gltf/doc_classes/EditorSceneFormatImporterGLTF.xml index 2293e75a3c0..b25f326ca91 100644 --- a/modules/gltf/doc_classes/EditorSceneFormatImporterGLTF.xml +++ b/modules/gltf/doc_classes/EditorSceneFormatImporterGLTF.xml @@ -1,5 +1,5 @@ - + diff --git a/modules/gltf/doc_classes/GLTFAccessor.xml b/modules/gltf/doc_classes/GLTFAccessor.xml index 3e869e65d0d..279a0137496 100644 --- a/modules/gltf/doc_classes/GLTFAccessor.xml +++ b/modules/gltf/doc_classes/GLTFAccessor.xml @@ -1,5 +1,5 @@ - + Represents a glTF accessor. diff --git a/modules/gltf/doc_classes/GLTFAnimation.xml b/modules/gltf/doc_classes/GLTFAnimation.xml index f11dea8ee84..b5e4e69270d 100644 --- a/modules/gltf/doc_classes/GLTFAnimation.xml +++ b/modules/gltf/doc_classes/GLTFAnimation.xml @@ -1,5 +1,5 @@ - + diff --git a/modules/gltf/doc_classes/GLTFBufferView.xml b/modules/gltf/doc_classes/GLTFBufferView.xml index d488b5bcfb2..a2ae98831ac 100644 --- a/modules/gltf/doc_classes/GLTFBufferView.xml +++ b/modules/gltf/doc_classes/GLTFBufferView.xml @@ -1,5 +1,5 @@ - + Represents a glTF buffer view. diff --git a/modules/gltf/doc_classes/GLTFCamera.xml b/modules/gltf/doc_classes/GLTFCamera.xml index 57ddd0bde40..0b44672682c 100644 --- a/modules/gltf/doc_classes/GLTFCamera.xml +++ b/modules/gltf/doc_classes/GLTFCamera.xml @@ -1,5 +1,5 @@ - + Represents a glTF camera. diff --git a/modules/gltf/doc_classes/GLTFDocument.xml b/modules/gltf/doc_classes/GLTFDocument.xml index ee7d91c29f4..409347dab42 100644 --- a/modules/gltf/doc_classes/GLTFDocument.xml +++ b/modules/gltf/doc_classes/GLTFDocument.xml @@ -1,5 +1,5 @@ - + Class for importing and exporting glTF files in and out of Godot. diff --git a/modules/gltf/doc_classes/GLTFDocumentExtension.xml b/modules/gltf/doc_classes/GLTFDocumentExtension.xml index b217955edca..ec59eca1238 100644 --- a/modules/gltf/doc_classes/GLTFDocumentExtension.xml +++ b/modules/gltf/doc_classes/GLTFDocumentExtension.xml @@ -1,5 +1,5 @@ - + [GLTFDocument] extension class. diff --git a/modules/gltf/doc_classes/GLTFDocumentExtensionConvertImporterMesh.xml b/modules/gltf/doc_classes/GLTFDocumentExtensionConvertImporterMesh.xml index 04075caba5b..b736fda83df 100644 --- a/modules/gltf/doc_classes/GLTFDocumentExtensionConvertImporterMesh.xml +++ b/modules/gltf/doc_classes/GLTFDocumentExtensionConvertImporterMesh.xml @@ -1,5 +1,5 @@ - + diff --git a/modules/gltf/doc_classes/GLTFLight.xml b/modules/gltf/doc_classes/GLTFLight.xml index 062125e2f52..b8212fcf685 100644 --- a/modules/gltf/doc_classes/GLTFLight.xml +++ b/modules/gltf/doc_classes/GLTFLight.xml @@ -1,5 +1,5 @@ - + Represents a glTF light. diff --git a/modules/gltf/doc_classes/GLTFMesh.xml b/modules/gltf/doc_classes/GLTFMesh.xml index 439078ffccb..0f0f97f1903 100644 --- a/modules/gltf/doc_classes/GLTFMesh.xml +++ b/modules/gltf/doc_classes/GLTFMesh.xml @@ -1,5 +1,5 @@ - + GLTFMesh represents a glTF mesh. diff --git a/modules/gltf/doc_classes/GLTFNode.xml b/modules/gltf/doc_classes/GLTFNode.xml index b5f004cf671..5475402fa33 100644 --- a/modules/gltf/doc_classes/GLTFNode.xml +++ b/modules/gltf/doc_classes/GLTFNode.xml @@ -1,5 +1,5 @@ - + glTF node class. diff --git a/modules/gltf/doc_classes/GLTFObjectModelProperty.xml b/modules/gltf/doc_classes/GLTFObjectModelProperty.xml index 434ca0dbded..10f97aad014 100644 --- a/modules/gltf/doc_classes/GLTFObjectModelProperty.xml +++ b/modules/gltf/doc_classes/GLTFObjectModelProperty.xml @@ -1,5 +1,5 @@ - + Describes how to access a property as defined in the glTF object model. diff --git a/modules/gltf/doc_classes/GLTFPhysicsBody.xml b/modules/gltf/doc_classes/GLTFPhysicsBody.xml index fdee3a9830e..ca69846f62e 100644 --- a/modules/gltf/doc_classes/GLTFPhysicsBody.xml +++ b/modules/gltf/doc_classes/GLTFPhysicsBody.xml @@ -1,5 +1,5 @@ - + Represents a glTF physics body. diff --git a/modules/gltf/doc_classes/GLTFPhysicsShape.xml b/modules/gltf/doc_classes/GLTFPhysicsShape.xml index 588e4dd0f4b..14c90c3c9b7 100644 --- a/modules/gltf/doc_classes/GLTFPhysicsShape.xml +++ b/modules/gltf/doc_classes/GLTFPhysicsShape.xml @@ -1,5 +1,5 @@ - + Represents a glTF physics shape. diff --git a/modules/gltf/doc_classes/GLTFSkeleton.xml b/modules/gltf/doc_classes/GLTFSkeleton.xml index 2dd3a374132..4b7995c512f 100644 --- a/modules/gltf/doc_classes/GLTFSkeleton.xml +++ b/modules/gltf/doc_classes/GLTFSkeleton.xml @@ -1,5 +1,5 @@ - + diff --git a/modules/gltf/doc_classes/GLTFSkin.xml b/modules/gltf/doc_classes/GLTFSkin.xml index 0835a2d5108..d62c2f6c937 100644 --- a/modules/gltf/doc_classes/GLTFSkin.xml +++ b/modules/gltf/doc_classes/GLTFSkin.xml @@ -1,5 +1,5 @@ - + diff --git a/modules/gltf/doc_classes/GLTFSpecGloss.xml b/modules/gltf/doc_classes/GLTFSpecGloss.xml index 11151f53d01..2ae81223cc8 100644 --- a/modules/gltf/doc_classes/GLTFSpecGloss.xml +++ b/modules/gltf/doc_classes/GLTFSpecGloss.xml @@ -1,5 +1,5 @@ - + Archived glTF extension for specular/glossy materials. diff --git a/modules/gltf/doc_classes/GLTFState.xml b/modules/gltf/doc_classes/GLTFState.xml index 628cfbde5a0..f60fb33084d 100644 --- a/modules/gltf/doc_classes/GLTFState.xml +++ b/modules/gltf/doc_classes/GLTFState.xml @@ -1,5 +1,5 @@ - + Represents all data of a glTF file. diff --git a/modules/gltf/doc_classes/GLTFTexture.xml b/modules/gltf/doc_classes/GLTFTexture.xml index 2a868a8ba38..bae1251b6a8 100644 --- a/modules/gltf/doc_classes/GLTFTexture.xml +++ b/modules/gltf/doc_classes/GLTFTexture.xml @@ -1,5 +1,5 @@ - + GLTFTexture represents a texture in a glTF file. diff --git a/modules/gltf/doc_classes/GLTFTextureSampler.xml b/modules/gltf/doc_classes/GLTFTextureSampler.xml index d00ab463c27..b030d8b1f8b 100644 --- a/modules/gltf/doc_classes/GLTFTextureSampler.xml +++ b/modules/gltf/doc_classes/GLTFTextureSampler.xml @@ -1,5 +1,5 @@ - + Represents a glTF texture sampler diff --git a/modules/gridmap/doc_classes/GridMap.xml b/modules/gridmap/doc_classes/GridMap.xml index f5fd115515b..680ab6cd1e4 100644 --- a/modules/gridmap/doc_classes/GridMap.xml +++ b/modules/gridmap/doc_classes/GridMap.xml @@ -1,5 +1,5 @@ - + Node for 3D tile-based maps. diff --git a/modules/gridmap/doc_classes/GridMapEditorPlugin.xml b/modules/gridmap/doc_classes/GridMapEditorPlugin.xml index fdda03414a0..f578f57ab49 100644 --- a/modules/gridmap/doc_classes/GridMapEditorPlugin.xml +++ b/modules/gridmap/doc_classes/GridMapEditorPlugin.xml @@ -1,5 +1,5 @@ - + Editor for [GridMap] nodes. diff --git a/modules/interactive_music/doc_classes/AudioStreamInteractive.xml b/modules/interactive_music/doc_classes/AudioStreamInteractive.xml index ea95a1a31ec..7200098db0e 100644 --- a/modules/interactive_music/doc_classes/AudioStreamInteractive.xml +++ b/modules/interactive_music/doc_classes/AudioStreamInteractive.xml @@ -1,5 +1,5 @@ - + Audio stream that can playback music interactively, combining clips and a transition table. diff --git a/modules/interactive_music/doc_classes/AudioStreamPlaybackInteractive.xml b/modules/interactive_music/doc_classes/AudioStreamPlaybackInteractive.xml index 86b608b02f9..1746cd681a6 100644 --- a/modules/interactive_music/doc_classes/AudioStreamPlaybackInteractive.xml +++ b/modules/interactive_music/doc_classes/AudioStreamPlaybackInteractive.xml @@ -1,5 +1,5 @@ - + Playback component of [AudioStreamInteractive]. diff --git a/modules/interactive_music/doc_classes/AudioStreamPlaybackPlaylist.xml b/modules/interactive_music/doc_classes/AudioStreamPlaybackPlaylist.xml index 3bc1b138311..b80c7f90ab0 100644 --- a/modules/interactive_music/doc_classes/AudioStreamPlaybackPlaylist.xml +++ b/modules/interactive_music/doc_classes/AudioStreamPlaybackPlaylist.xml @@ -1,5 +1,5 @@ - + Playback class used for [AudioStreamPlaylist]. diff --git a/modules/interactive_music/doc_classes/AudioStreamPlaybackSynchronized.xml b/modules/interactive_music/doc_classes/AudioStreamPlaybackSynchronized.xml index 93bb3145caa..9ebd1e2f470 100644 --- a/modules/interactive_music/doc_classes/AudioStreamPlaybackSynchronized.xml +++ b/modules/interactive_music/doc_classes/AudioStreamPlaybackSynchronized.xml @@ -1,5 +1,5 @@ - + Playback class used for [AudioStreamSynchronized]. diff --git a/modules/interactive_music/doc_classes/AudioStreamPlaylist.xml b/modules/interactive_music/doc_classes/AudioStreamPlaylist.xml index e12cab13740..52d6dbc1d4e 100644 --- a/modules/interactive_music/doc_classes/AudioStreamPlaylist.xml +++ b/modules/interactive_music/doc_classes/AudioStreamPlaylist.xml @@ -1,5 +1,5 @@ - + [AudioStream] that includes sub-streams and plays them back like a playlist. diff --git a/modules/interactive_music/doc_classes/AudioStreamSynchronized.xml b/modules/interactive_music/doc_classes/AudioStreamSynchronized.xml index d7b2ae0c486..630ccfa15cb 100644 --- a/modules/interactive_music/doc_classes/AudioStreamSynchronized.xml +++ b/modules/interactive_music/doc_classes/AudioStreamSynchronized.xml @@ -1,5 +1,5 @@ - + Stream that can be fitted with sub-streams, which will be played in-sync. diff --git a/modules/mobile_vr/doc_classes/MobileVRInterface.xml b/modules/mobile_vr/doc_classes/MobileVRInterface.xml index 00981e8a05d..5db420b1461 100644 --- a/modules/mobile_vr/doc_classes/MobileVRInterface.xml +++ b/modules/mobile_vr/doc_classes/MobileVRInterface.xml @@ -1,5 +1,5 @@ - + Generic mobile VR implementation. diff --git a/modules/mono/doc_classes/CSharpScript.xml b/modules/mono/doc_classes/CSharpScript.xml index 7e14259d5a2..a238b625302 100644 --- a/modules/mono/doc_classes/CSharpScript.xml +++ b/modules/mono/doc_classes/CSharpScript.xml @@ -1,5 +1,5 @@ - + A script implemented in the C# programming language, saved with the [code].cs[/code] extension (Mono-enabled builds only). diff --git a/modules/mp3/doc_classes/AudioStreamMP3.xml b/modules/mp3/doc_classes/AudioStreamMP3.xml index 1035da8b89a..94ee68bb42c 100644 --- a/modules/mp3/doc_classes/AudioStreamMP3.xml +++ b/modules/mp3/doc_classes/AudioStreamMP3.xml @@ -1,5 +1,5 @@ - + MP3 audio stream driver. diff --git a/modules/mp3/doc_classes/ResourceImporterMP3.xml b/modules/mp3/doc_classes/ResourceImporterMP3.xml index 3834df980d8..01b576bdee5 100644 --- a/modules/mp3/doc_classes/ResourceImporterMP3.xml +++ b/modules/mp3/doc_classes/ResourceImporterMP3.xml @@ -1,5 +1,5 @@ - + Imports an MP3 audio file for playback. diff --git a/modules/multiplayer/doc_classes/MultiplayerSpawner.xml b/modules/multiplayer/doc_classes/MultiplayerSpawner.xml index 198e2378c90..779d627585b 100644 --- a/modules/multiplayer/doc_classes/MultiplayerSpawner.xml +++ b/modules/multiplayer/doc_classes/MultiplayerSpawner.xml @@ -1,5 +1,5 @@ - + Automatically replicates spawnable nodes from the authority to other multiplayer peers. diff --git a/modules/multiplayer/doc_classes/MultiplayerSynchronizer.xml b/modules/multiplayer/doc_classes/MultiplayerSynchronizer.xml index 74c2194eaf9..2613c0c3339 100644 --- a/modules/multiplayer/doc_classes/MultiplayerSynchronizer.xml +++ b/modules/multiplayer/doc_classes/MultiplayerSynchronizer.xml @@ -1,5 +1,5 @@ - + Synchronizes properties from the multiplayer authority to the remote peers. diff --git a/modules/multiplayer/doc_classes/OfflineMultiplayerPeer.xml b/modules/multiplayer/doc_classes/OfflineMultiplayerPeer.xml index 9c574040801..22f65d18875 100644 --- a/modules/multiplayer/doc_classes/OfflineMultiplayerPeer.xml +++ b/modules/multiplayer/doc_classes/OfflineMultiplayerPeer.xml @@ -1,5 +1,5 @@ - + A [MultiplayerPeer] which is always connected and acts as a server. diff --git a/modules/multiplayer/doc_classes/SceneMultiplayer.xml b/modules/multiplayer/doc_classes/SceneMultiplayer.xml index 3277f1ff3e8..21ffb859171 100644 --- a/modules/multiplayer/doc_classes/SceneMultiplayer.xml +++ b/modules/multiplayer/doc_classes/SceneMultiplayer.xml @@ -1,5 +1,5 @@ - + High-level multiplayer API implementation. diff --git a/modules/multiplayer/doc_classes/SceneReplicationConfig.xml b/modules/multiplayer/doc_classes/SceneReplicationConfig.xml index f2a9ed3ef29..76c8d56ba46 100644 --- a/modules/multiplayer/doc_classes/SceneReplicationConfig.xml +++ b/modules/multiplayer/doc_classes/SceneReplicationConfig.xml @@ -1,5 +1,5 @@ - + Configuration for properties to synchronize with a [MultiplayerSynchronizer]. diff --git a/modules/noise/doc_classes/FastNoiseLite.xml b/modules/noise/doc_classes/FastNoiseLite.xml index 21fbb18b7d4..587975297b5 100644 --- a/modules/noise/doc_classes/FastNoiseLite.xml +++ b/modules/noise/doc_classes/FastNoiseLite.xml @@ -1,5 +1,5 @@ - + Generates noise using the FastNoiseLite library. diff --git a/modules/noise/doc_classes/Noise.xml b/modules/noise/doc_classes/Noise.xml index 7d74c84f936..a3a4aee1b4b 100644 --- a/modules/noise/doc_classes/Noise.xml +++ b/modules/noise/doc_classes/Noise.xml @@ -1,5 +1,5 @@ - + Abstract base class for noise generators. diff --git a/modules/noise/doc_classes/NoiseTexture2D.xml b/modules/noise/doc_classes/NoiseTexture2D.xml index 3f4afc51417..0b7a737e8e4 100644 --- a/modules/noise/doc_classes/NoiseTexture2D.xml +++ b/modules/noise/doc_classes/NoiseTexture2D.xml @@ -1,5 +1,5 @@ - + A 2D texture filled with noise generated by a [Noise] object. diff --git a/modules/noise/doc_classes/NoiseTexture3D.xml b/modules/noise/doc_classes/NoiseTexture3D.xml index e8e205bc688..3aaf5b45a21 100644 --- a/modules/noise/doc_classes/NoiseTexture3D.xml +++ b/modules/noise/doc_classes/NoiseTexture3D.xml @@ -1,5 +1,5 @@ - + A 3D texture filled with noise generated by a [Noise] object. diff --git a/modules/ogg/doc_classes/OggPacketSequence.xml b/modules/ogg/doc_classes/OggPacketSequence.xml index 75dcf5a29fb..b2a54b285b4 100644 --- a/modules/ogg/doc_classes/OggPacketSequence.xml +++ b/modules/ogg/doc_classes/OggPacketSequence.xml @@ -1,5 +1,5 @@ - + A sequence of Ogg packets. diff --git a/modules/ogg/doc_classes/OggPacketSequencePlayback.xml b/modules/ogg/doc_classes/OggPacketSequencePlayback.xml index e363e67ee47..64a62b5538a 100644 --- a/modules/ogg/doc_classes/OggPacketSequencePlayback.xml +++ b/modules/ogg/doc_classes/OggPacketSequencePlayback.xml @@ -1,5 +1,5 @@ - + diff --git a/modules/openxr/doc_classes/OpenXRAPIExtension.xml b/modules/openxr/doc_classes/OpenXRAPIExtension.xml index 27207045ee5..00121d4ecec 100644 --- a/modules/openxr/doc_classes/OpenXRAPIExtension.xml +++ b/modules/openxr/doc_classes/OpenXRAPIExtension.xml @@ -1,5 +1,5 @@ - + Makes the OpenXR API available for GDExtension. diff --git a/modules/openxr/doc_classes/OpenXRAction.xml b/modules/openxr/doc_classes/OpenXRAction.xml index 2a9f255f2f2..70095f63246 100644 --- a/modules/openxr/doc_classes/OpenXRAction.xml +++ b/modules/openxr/doc_classes/OpenXRAction.xml @@ -1,5 +1,5 @@ - + An OpenXR action. diff --git a/modules/openxr/doc_classes/OpenXRActionBindingModifier.xml b/modules/openxr/doc_classes/OpenXRActionBindingModifier.xml index 817c6a93b90..c0b9f82b86f 100644 --- a/modules/openxr/doc_classes/OpenXRActionBindingModifier.xml +++ b/modules/openxr/doc_classes/OpenXRActionBindingModifier.xml @@ -1,5 +1,5 @@ - + Binding modifier that applies on individual actions related to an interaction profile. diff --git a/modules/openxr/doc_classes/OpenXRActionMap.xml b/modules/openxr/doc_classes/OpenXRActionMap.xml index b8711635e41..dcebb2fcdb0 100644 --- a/modules/openxr/doc_classes/OpenXRActionMap.xml +++ b/modules/openxr/doc_classes/OpenXRActionMap.xml @@ -1,5 +1,5 @@ - + Collection of [OpenXRActionSet] and [OpenXRInteractionProfile] resources for the OpenXR module. diff --git a/modules/openxr/doc_classes/OpenXRActionSet.xml b/modules/openxr/doc_classes/OpenXRActionSet.xml index 03dc33d7433..9ad44d72571 100644 --- a/modules/openxr/doc_classes/OpenXRActionSet.xml +++ b/modules/openxr/doc_classes/OpenXRActionSet.xml @@ -1,5 +1,5 @@ - + Collection of [OpenXRAction] resources that make up an action set. diff --git a/modules/openxr/doc_classes/OpenXRAnalogThresholdModifier.xml b/modules/openxr/doc_classes/OpenXRAnalogThresholdModifier.xml index 87f7828e7ba..c0f2a9f0548 100644 --- a/modules/openxr/doc_classes/OpenXRAnalogThresholdModifier.xml +++ b/modules/openxr/doc_classes/OpenXRAnalogThresholdModifier.xml @@ -1,5 +1,5 @@ - + The analog threshold binding modifier can modify a float input to a boolean input with specified thresholds. diff --git a/modules/openxr/doc_classes/OpenXRAnchorTracker.xml b/modules/openxr/doc_classes/OpenXRAnchorTracker.xml index bed90d70f17..ecf418be7fb 100644 --- a/modules/openxr/doc_classes/OpenXRAnchorTracker.xml +++ b/modules/openxr/doc_classes/OpenXRAnchorTracker.xml @@ -1,5 +1,5 @@ - + Positional tracker for our spatial entity anchor extension. diff --git a/modules/openxr/doc_classes/OpenXRAndroidThreadSettingsExtension.xml b/modules/openxr/doc_classes/OpenXRAndroidThreadSettingsExtension.xml index af685f7ad42..f55a6bdc09a 100644 --- a/modules/openxr/doc_classes/OpenXRAndroidThreadSettingsExtension.xml +++ b/modules/openxr/doc_classes/OpenXRAndroidThreadSettingsExtension.xml @@ -1,5 +1,5 @@ - + Wraps the [url=https://registry.khronos.org/OpenXR/specs/1.1/html/xrspec.html#XR_KHR_android_thread_settings]XR_KHR_android_thread_settings[/url] extension. diff --git a/modules/openxr/doc_classes/OpenXRBindingModifier.xml b/modules/openxr/doc_classes/OpenXRBindingModifier.xml index 1e999abbd69..283d1e061a1 100644 --- a/modules/openxr/doc_classes/OpenXRBindingModifier.xml +++ b/modules/openxr/doc_classes/OpenXRBindingModifier.xml @@ -1,5 +1,5 @@ - + Binding modifier base class. diff --git a/modules/openxr/doc_classes/OpenXRBindingModifierEditor.xml b/modules/openxr/doc_classes/OpenXRBindingModifierEditor.xml index 4997e3f71e7..c6ffa83d02c 100644 --- a/modules/openxr/doc_classes/OpenXRBindingModifierEditor.xml +++ b/modules/openxr/doc_classes/OpenXRBindingModifierEditor.xml @@ -1,5 +1,5 @@ - + Binding modifier editor. diff --git a/modules/openxr/doc_classes/OpenXRCompositionLayer.xml b/modules/openxr/doc_classes/OpenXRCompositionLayer.xml index dcee4eb358e..3983b32549e 100644 --- a/modules/openxr/doc_classes/OpenXRCompositionLayer.xml +++ b/modules/openxr/doc_classes/OpenXRCompositionLayer.xml @@ -1,5 +1,5 @@ - + The parent class of all OpenXR composition layer nodes. diff --git a/modules/openxr/doc_classes/OpenXRCompositionLayerCylinder.xml b/modules/openxr/doc_classes/OpenXRCompositionLayerCylinder.xml index 7e2e6b62fda..f137b1e3534 100644 --- a/modules/openxr/doc_classes/OpenXRCompositionLayerCylinder.xml +++ b/modules/openxr/doc_classes/OpenXRCompositionLayerCylinder.xml @@ -1,5 +1,5 @@ - + An OpenXR composition layer that is rendered as an internal slice of a cylinder. diff --git a/modules/openxr/doc_classes/OpenXRCompositionLayerEquirect.xml b/modules/openxr/doc_classes/OpenXRCompositionLayerEquirect.xml index 945eab2a04d..e1d457335e7 100644 --- a/modules/openxr/doc_classes/OpenXRCompositionLayerEquirect.xml +++ b/modules/openxr/doc_classes/OpenXRCompositionLayerEquirect.xml @@ -1,5 +1,5 @@ - + An OpenXR composition layer that is rendered as an internal slice of a sphere. diff --git a/modules/openxr/doc_classes/OpenXRCompositionLayerQuad.xml b/modules/openxr/doc_classes/OpenXRCompositionLayerQuad.xml index 6632f90ed22..0bae247682e 100644 --- a/modules/openxr/doc_classes/OpenXRCompositionLayerQuad.xml +++ b/modules/openxr/doc_classes/OpenXRCompositionLayerQuad.xml @@ -1,5 +1,5 @@ - + An OpenXR composition layer that is rendered as a quad. diff --git a/modules/openxr/doc_classes/OpenXRDpadBindingModifier.xml b/modules/openxr/doc_classes/OpenXRDpadBindingModifier.xml index 4e55ff5512c..33110a5d03b 100644 --- a/modules/openxr/doc_classes/OpenXRDpadBindingModifier.xml +++ b/modules/openxr/doc_classes/OpenXRDpadBindingModifier.xml @@ -1,5 +1,5 @@ - + The DPad binding modifier converts an axis input to a dpad output. diff --git a/modules/openxr/doc_classes/OpenXRExtensionWrapper.xml b/modules/openxr/doc_classes/OpenXRExtensionWrapper.xml index cf4a6924103..621d4b60916 100644 --- a/modules/openxr/doc_classes/OpenXRExtensionWrapper.xml +++ b/modules/openxr/doc_classes/OpenXRExtensionWrapper.xml @@ -1,5 +1,5 @@ - + Allows implementing OpenXR extensions with GDExtension. diff --git a/modules/openxr/doc_classes/OpenXRExtensionWrapperExtension.xml b/modules/openxr/doc_classes/OpenXRExtensionWrapperExtension.xml index 7887658b12f..84e05c7bf0c 100644 --- a/modules/openxr/doc_classes/OpenXRExtensionWrapperExtension.xml +++ b/modules/openxr/doc_classes/OpenXRExtensionWrapperExtension.xml @@ -1,5 +1,5 @@ - + Allows implementing OpenXR extensions with GDExtension. diff --git a/modules/openxr/doc_classes/OpenXRFrameSynthesisExtension.xml b/modules/openxr/doc_classes/OpenXRFrameSynthesisExtension.xml index bde5c08d0f5..575bed89274 100644 --- a/modules/openxr/doc_classes/OpenXRFrameSynthesisExtension.xml +++ b/modules/openxr/doc_classes/OpenXRFrameSynthesisExtension.xml @@ -1,5 +1,5 @@ - + The OpenXR Frame synthesis extension allows for advanced reprojection at low(er) framerates. diff --git a/modules/openxr/doc_classes/OpenXRFutureExtension.xml b/modules/openxr/doc_classes/OpenXRFutureExtension.xml index 9ed104ab20b..daffecea017 100644 --- a/modules/openxr/doc_classes/OpenXRFutureExtension.xml +++ b/modules/openxr/doc_classes/OpenXRFutureExtension.xml @@ -1,5 +1,5 @@ - + The OpenXR Future extension allows for asynchronous APIs to be used. diff --git a/modules/openxr/doc_classes/OpenXRFutureResult.xml b/modules/openxr/doc_classes/OpenXRFutureResult.xml index c8fea868f45..b1d0da84efa 100644 --- a/modules/openxr/doc_classes/OpenXRFutureResult.xml +++ b/modules/openxr/doc_classes/OpenXRFutureResult.xml @@ -1,5 +1,5 @@ - + Result object tracking the asynchronous result of an OpenXR Future object. diff --git a/modules/openxr/doc_classes/OpenXRHand.xml b/modules/openxr/doc_classes/OpenXRHand.xml index 23d932ddd75..8183668c7c9 100644 --- a/modules/openxr/doc_classes/OpenXRHand.xml +++ b/modules/openxr/doc_classes/OpenXRHand.xml @@ -1,5 +1,5 @@ - + Node supporting hand and finger tracking in OpenXR. diff --git a/modules/openxr/doc_classes/OpenXRHapticBase.xml b/modules/openxr/doc_classes/OpenXRHapticBase.xml index c23d86587ca..ddaceab03f4 100644 --- a/modules/openxr/doc_classes/OpenXRHapticBase.xml +++ b/modules/openxr/doc_classes/OpenXRHapticBase.xml @@ -1,5 +1,5 @@ - + OpenXR Haptic feedback base class. diff --git a/modules/openxr/doc_classes/OpenXRHapticVibration.xml b/modules/openxr/doc_classes/OpenXRHapticVibration.xml index f147abb1021..593068f7d3b 100644 --- a/modules/openxr/doc_classes/OpenXRHapticVibration.xml +++ b/modules/openxr/doc_classes/OpenXRHapticVibration.xml @@ -1,5 +1,5 @@ - + Vibration haptic feedback. diff --git a/modules/openxr/doc_classes/OpenXRIPBinding.xml b/modules/openxr/doc_classes/OpenXRIPBinding.xml index 5b027acae48..a4aec83ec53 100644 --- a/modules/openxr/doc_classes/OpenXRIPBinding.xml +++ b/modules/openxr/doc_classes/OpenXRIPBinding.xml @@ -1,5 +1,5 @@ - + Defines a binding between an [OpenXRAction] and an XR input or output. diff --git a/modules/openxr/doc_classes/OpenXRIPBindingModifier.xml b/modules/openxr/doc_classes/OpenXRIPBindingModifier.xml index 8ec5f0a4e49..fb2350c06e5 100644 --- a/modules/openxr/doc_classes/OpenXRIPBindingModifier.xml +++ b/modules/openxr/doc_classes/OpenXRIPBindingModifier.xml @@ -1,5 +1,5 @@ - + Binding modifier that applies directly on an interaction profile. diff --git a/modules/openxr/doc_classes/OpenXRInteractionProfile.xml b/modules/openxr/doc_classes/OpenXRInteractionProfile.xml index d786739bda3..6db54ba87ab 100644 --- a/modules/openxr/doc_classes/OpenXRInteractionProfile.xml +++ b/modules/openxr/doc_classes/OpenXRInteractionProfile.xml @@ -1,5 +1,5 @@ - + Suggested bindings object for OpenXR. diff --git a/modules/openxr/doc_classes/OpenXRInteractionProfileEditor.xml b/modules/openxr/doc_classes/OpenXRInteractionProfileEditor.xml index 0155d74bc81..de4cfac81a5 100644 --- a/modules/openxr/doc_classes/OpenXRInteractionProfileEditor.xml +++ b/modules/openxr/doc_classes/OpenXRInteractionProfileEditor.xml @@ -1,5 +1,5 @@ - + Default OpenXR interaction profile editor. diff --git a/modules/openxr/doc_classes/OpenXRInteractionProfileEditorBase.xml b/modules/openxr/doc_classes/OpenXRInteractionProfileEditorBase.xml index 49298c68b84..9c1afa9c2e4 100644 --- a/modules/openxr/doc_classes/OpenXRInteractionProfileEditorBase.xml +++ b/modules/openxr/doc_classes/OpenXRInteractionProfileEditorBase.xml @@ -1,5 +1,5 @@ - + Base class for editing interaction profiles. diff --git a/modules/openxr/doc_classes/OpenXRInteractionProfileMetadata.xml b/modules/openxr/doc_classes/OpenXRInteractionProfileMetadata.xml index 6eb98f3950e..9c70402a1c4 100644 --- a/modules/openxr/doc_classes/OpenXRInteractionProfileMetadata.xml +++ b/modules/openxr/doc_classes/OpenXRInteractionProfileMetadata.xml @@ -1,5 +1,5 @@ - + Meta class registering supported devices in OpenXR. diff --git a/modules/openxr/doc_classes/OpenXRInterface.xml b/modules/openxr/doc_classes/OpenXRInterface.xml index b2eb3e9905b..e9b1938de11 100644 --- a/modules/openxr/doc_classes/OpenXRInterface.xml +++ b/modules/openxr/doc_classes/OpenXRInterface.xml @@ -1,5 +1,5 @@ - + Our OpenXR interface. diff --git a/modules/openxr/doc_classes/OpenXRMarkerTracker.xml b/modules/openxr/doc_classes/OpenXRMarkerTracker.xml index 9d7d4741c96..1016572a6f4 100644 --- a/modules/openxr/doc_classes/OpenXRMarkerTracker.xml +++ b/modules/openxr/doc_classes/OpenXRMarkerTracker.xml @@ -1,5 +1,5 @@ - + Spatial entity tracker for our spatial entity marker tracking extension. diff --git a/modules/openxr/doc_classes/OpenXRPlaneTracker.xml b/modules/openxr/doc_classes/OpenXRPlaneTracker.xml index 28348878b5e..5bc79cfef00 100644 --- a/modules/openxr/doc_classes/OpenXRPlaneTracker.xml +++ b/modules/openxr/doc_classes/OpenXRPlaneTracker.xml @@ -1,5 +1,5 @@ - + Spatial entity tracker for our spatial entity plane tracking extension. diff --git a/modules/openxr/doc_classes/OpenXRRenderModel.xml b/modules/openxr/doc_classes/OpenXRRenderModel.xml index e9f531e28d3..6bf289bb31e 100644 --- a/modules/openxr/doc_classes/OpenXRRenderModel.xml +++ b/modules/openxr/doc_classes/OpenXRRenderModel.xml @@ -1,5 +1,5 @@ - + This node will display an OpenXR render model. diff --git a/modules/openxr/doc_classes/OpenXRRenderModelExtension.xml b/modules/openxr/doc_classes/OpenXRRenderModelExtension.xml index 9726401748f..1d8a7c1f14c 100644 --- a/modules/openxr/doc_classes/OpenXRRenderModelExtension.xml +++ b/modules/openxr/doc_classes/OpenXRRenderModelExtension.xml @@ -1,5 +1,5 @@ - + This class implements the OpenXR Render Model Extension. diff --git a/modules/openxr/doc_classes/OpenXRRenderModelManager.xml b/modules/openxr/doc_classes/OpenXRRenderModelManager.xml index 4814dba90e2..fb40682e669 100644 --- a/modules/openxr/doc_classes/OpenXRRenderModelManager.xml +++ b/modules/openxr/doc_classes/OpenXRRenderModelManager.xml @@ -1,5 +1,5 @@ - + Helper node that will automatically manage displaying render models. diff --git a/modules/openxr/doc_classes/OpenXRSpatialAnchorCapability.xml b/modules/openxr/doc_classes/OpenXRSpatialAnchorCapability.xml index 49febe6a775..c740bbe9061 100644 --- a/modules/openxr/doc_classes/OpenXRSpatialAnchorCapability.xml +++ b/modules/openxr/doc_classes/OpenXRSpatialAnchorCapability.xml @@ -1,5 +1,5 @@ - + Implementation for handling spatial entity anchor logic. diff --git a/modules/openxr/doc_classes/OpenXRSpatialCapabilityConfigurationAnchor.xml b/modules/openxr/doc_classes/OpenXRSpatialCapabilityConfigurationAnchor.xml index 023e48f4cb0..80704933f80 100644 --- a/modules/openxr/doc_classes/OpenXRSpatialCapabilityConfigurationAnchor.xml +++ b/modules/openxr/doc_classes/OpenXRSpatialCapabilityConfigurationAnchor.xml @@ -1,5 +1,5 @@ - + Configuration header for spatial anchors. diff --git a/modules/openxr/doc_classes/OpenXRSpatialCapabilityConfigurationAprilTag.xml b/modules/openxr/doc_classes/OpenXRSpatialCapabilityConfigurationAprilTag.xml index 02daeeb39fc..3652f99efa8 100644 --- a/modules/openxr/doc_classes/OpenXRSpatialCapabilityConfigurationAprilTag.xml +++ b/modules/openxr/doc_classes/OpenXRSpatialCapabilityConfigurationAprilTag.xml @@ -1,5 +1,5 @@ - + Configuration header for April tag markers. diff --git a/modules/openxr/doc_classes/OpenXRSpatialCapabilityConfigurationAruco.xml b/modules/openxr/doc_classes/OpenXRSpatialCapabilityConfigurationAruco.xml index a3da2fe65ed..81fd62fe135 100644 --- a/modules/openxr/doc_classes/OpenXRSpatialCapabilityConfigurationAruco.xml +++ b/modules/openxr/doc_classes/OpenXRSpatialCapabilityConfigurationAruco.xml @@ -1,5 +1,5 @@ - + Configuration header for Aruco markers. diff --git a/modules/openxr/doc_classes/OpenXRSpatialCapabilityConfigurationBaseHeader.xml b/modules/openxr/doc_classes/OpenXRSpatialCapabilityConfigurationBaseHeader.xml index d09dbe91004..58198d7d44c 100644 --- a/modules/openxr/doc_classes/OpenXRSpatialCapabilityConfigurationBaseHeader.xml +++ b/modules/openxr/doc_classes/OpenXRSpatialCapabilityConfigurationBaseHeader.xml @@ -1,5 +1,5 @@ - + Wrapper base class for OpenXR Spatial Capability Configuration headers. diff --git a/modules/openxr/doc_classes/OpenXRSpatialCapabilityConfigurationMicroQrCode.xml b/modules/openxr/doc_classes/OpenXRSpatialCapabilityConfigurationMicroQrCode.xml index c21282b2d4f..7794a13ed8b 100644 --- a/modules/openxr/doc_classes/OpenXRSpatialCapabilityConfigurationMicroQrCode.xml +++ b/modules/openxr/doc_classes/OpenXRSpatialCapabilityConfigurationMicroQrCode.xml @@ -1,5 +1,5 @@ - + Configuration header for QR code markers. diff --git a/modules/openxr/doc_classes/OpenXRSpatialCapabilityConfigurationPlaneTracking.xml b/modules/openxr/doc_classes/OpenXRSpatialCapabilityConfigurationPlaneTracking.xml index e7d3718498e..2b0bc086223 100644 --- a/modules/openxr/doc_classes/OpenXRSpatialCapabilityConfigurationPlaneTracking.xml +++ b/modules/openxr/doc_classes/OpenXRSpatialCapabilityConfigurationPlaneTracking.xml @@ -1,5 +1,5 @@ - + Configuration header for plane tracking. diff --git a/modules/openxr/doc_classes/OpenXRSpatialCapabilityConfigurationQrCode.xml b/modules/openxr/doc_classes/OpenXRSpatialCapabilityConfigurationQrCode.xml index fd0764fab09..f8ab010f3a9 100644 --- a/modules/openxr/doc_classes/OpenXRSpatialCapabilityConfigurationQrCode.xml +++ b/modules/openxr/doc_classes/OpenXRSpatialCapabilityConfigurationQrCode.xml @@ -1,5 +1,5 @@ - + Configuration header for micro QR code markers. diff --git a/modules/openxr/doc_classes/OpenXRSpatialComponentAnchorList.xml b/modules/openxr/doc_classes/OpenXRSpatialComponentAnchorList.xml index a855133d783..06a7b1f7a9c 100644 --- a/modules/openxr/doc_classes/OpenXRSpatialComponentAnchorList.xml +++ b/modules/openxr/doc_classes/OpenXRSpatialComponentAnchorList.xml @@ -1,5 +1,5 @@ - + Object for storing the queries anchor result data. diff --git a/modules/openxr/doc_classes/OpenXRSpatialComponentBounded2DList.xml b/modules/openxr/doc_classes/OpenXRSpatialComponentBounded2DList.xml index 3c8d071d0d3..6c47d329253 100644 --- a/modules/openxr/doc_classes/OpenXRSpatialComponentBounded2DList.xml +++ b/modules/openxr/doc_classes/OpenXRSpatialComponentBounded2DList.xml @@ -1,5 +1,5 @@ - + Object for storing the queries bounded2d result data. diff --git a/modules/openxr/doc_classes/OpenXRSpatialComponentBounded3DList.xml b/modules/openxr/doc_classes/OpenXRSpatialComponentBounded3DList.xml index 6f2f7c7632b..3396d085c44 100644 --- a/modules/openxr/doc_classes/OpenXRSpatialComponentBounded3DList.xml +++ b/modules/openxr/doc_classes/OpenXRSpatialComponentBounded3DList.xml @@ -1,5 +1,5 @@ - + Object for storing the queries bounded3d result data. diff --git a/modules/openxr/doc_classes/OpenXRSpatialComponentData.xml b/modules/openxr/doc_classes/OpenXRSpatialComponentData.xml index 87fd37f01f1..1a9ada11c20 100644 --- a/modules/openxr/doc_classes/OpenXRSpatialComponentData.xml +++ b/modules/openxr/doc_classes/OpenXRSpatialComponentData.xml @@ -1,5 +1,5 @@ - + Object for storing OpenXR spatial entity component data. diff --git a/modules/openxr/doc_classes/OpenXRSpatialComponentMarkerList.xml b/modules/openxr/doc_classes/OpenXRSpatialComponentMarkerList.xml index 43a6840ab11..c0eff2f8e4e 100644 --- a/modules/openxr/doc_classes/OpenXRSpatialComponentMarkerList.xml +++ b/modules/openxr/doc_classes/OpenXRSpatialComponentMarkerList.xml @@ -1,5 +1,5 @@ - + Object for storing the queries marker result data. diff --git a/modules/openxr/doc_classes/OpenXRSpatialComponentMesh2DList.xml b/modules/openxr/doc_classes/OpenXRSpatialComponentMesh2DList.xml index db300348a0c..ebea36ad41c 100644 --- a/modules/openxr/doc_classes/OpenXRSpatialComponentMesh2DList.xml +++ b/modules/openxr/doc_classes/OpenXRSpatialComponentMesh2DList.xml @@ -1,5 +1,5 @@ - + Object for storing the queries mesh2d result data. diff --git a/modules/openxr/doc_classes/OpenXRSpatialComponentMesh3DList.xml b/modules/openxr/doc_classes/OpenXRSpatialComponentMesh3DList.xml index 7dfd6086558..bb2d4cbcbe3 100644 --- a/modules/openxr/doc_classes/OpenXRSpatialComponentMesh3DList.xml +++ b/modules/openxr/doc_classes/OpenXRSpatialComponentMesh3DList.xml @@ -1,5 +1,5 @@ - + Object for storing the queries mesh3d result data. diff --git a/modules/openxr/doc_classes/OpenXRSpatialComponentParentList.xml b/modules/openxr/doc_classes/OpenXRSpatialComponentParentList.xml index f64fed9a3b5..0ed876c631d 100644 --- a/modules/openxr/doc_classes/OpenXRSpatialComponentParentList.xml +++ b/modules/openxr/doc_classes/OpenXRSpatialComponentParentList.xml @@ -1,5 +1,5 @@ - + Object for storing the queries parent result data. diff --git a/modules/openxr/doc_classes/OpenXRSpatialComponentPersistenceList.xml b/modules/openxr/doc_classes/OpenXRSpatialComponentPersistenceList.xml index f665b778a95..8d29d806ff4 100644 --- a/modules/openxr/doc_classes/OpenXRSpatialComponentPersistenceList.xml +++ b/modules/openxr/doc_classes/OpenXRSpatialComponentPersistenceList.xml @@ -1,5 +1,5 @@ - + Object for storing the query persistence result data. diff --git a/modules/openxr/doc_classes/OpenXRSpatialComponentPlaneAlignmentList.xml b/modules/openxr/doc_classes/OpenXRSpatialComponentPlaneAlignmentList.xml index a5a37521427..1594406c5a5 100644 --- a/modules/openxr/doc_classes/OpenXRSpatialComponentPlaneAlignmentList.xml +++ b/modules/openxr/doc_classes/OpenXRSpatialComponentPlaneAlignmentList.xml @@ -1,5 +1,5 @@ - + Object for storing the queries plane alignment result data. diff --git a/modules/openxr/doc_classes/OpenXRSpatialComponentPlaneSemanticLabelList.xml b/modules/openxr/doc_classes/OpenXRSpatialComponentPlaneSemanticLabelList.xml index b2557d4bee0..725c68179b8 100644 --- a/modules/openxr/doc_classes/OpenXRSpatialComponentPlaneSemanticLabelList.xml +++ b/modules/openxr/doc_classes/OpenXRSpatialComponentPlaneSemanticLabelList.xml @@ -1,5 +1,5 @@ - + Object for storing the queries plane semantic label result data. diff --git a/modules/openxr/doc_classes/OpenXRSpatialComponentPolygon2DList.xml b/modules/openxr/doc_classes/OpenXRSpatialComponentPolygon2DList.xml index db5b9b0c2c3..150436a2e5d 100644 --- a/modules/openxr/doc_classes/OpenXRSpatialComponentPolygon2DList.xml +++ b/modules/openxr/doc_classes/OpenXRSpatialComponentPolygon2DList.xml @@ -1,5 +1,5 @@ - + Object for storing the queries polygon2d result data. diff --git a/modules/openxr/doc_classes/OpenXRSpatialContextPersistenceConfig.xml b/modules/openxr/doc_classes/OpenXRSpatialContextPersistenceConfig.xml index 52b7dc83601..717b673c1d0 100644 --- a/modules/openxr/doc_classes/OpenXRSpatialContextPersistenceConfig.xml +++ b/modules/openxr/doc_classes/OpenXRSpatialContextPersistenceConfig.xml @@ -1,5 +1,5 @@ - + Configuration header for spatial persistence. diff --git a/modules/openxr/doc_classes/OpenXRSpatialEntityExtension.xml b/modules/openxr/doc_classes/OpenXRSpatialEntityExtension.xml index db60ac3d7ad..995222aedad 100644 --- a/modules/openxr/doc_classes/OpenXRSpatialEntityExtension.xml +++ b/modules/openxr/doc_classes/OpenXRSpatialEntityExtension.xml @@ -1,5 +1,5 @@ - + OpenXR extension that handles spatial entities. diff --git a/modules/openxr/doc_classes/OpenXRSpatialEntityTracker.xml b/modules/openxr/doc_classes/OpenXRSpatialEntityTracker.xml index ca14b99e1ab..1b054ad2731 100644 --- a/modules/openxr/doc_classes/OpenXRSpatialEntityTracker.xml +++ b/modules/openxr/doc_classes/OpenXRSpatialEntityTracker.xml @@ -1,5 +1,5 @@ - + Base class for Positional trackers managed by OpenXR's spatial entity extensions. diff --git a/modules/openxr/doc_classes/OpenXRSpatialMarkerTrackingCapability.xml b/modules/openxr/doc_classes/OpenXRSpatialMarkerTrackingCapability.xml index dc5eae162d1..564e6b0febc 100644 --- a/modules/openxr/doc_classes/OpenXRSpatialMarkerTrackingCapability.xml +++ b/modules/openxr/doc_classes/OpenXRSpatialMarkerTrackingCapability.xml @@ -1,5 +1,5 @@ - + Implementation for handling spatial entity marker tracking logic. diff --git a/modules/openxr/doc_classes/OpenXRSpatialPlaneTrackingCapability.xml b/modules/openxr/doc_classes/OpenXRSpatialPlaneTrackingCapability.xml index 7b51f326e46..b369db9b899 100644 --- a/modules/openxr/doc_classes/OpenXRSpatialPlaneTrackingCapability.xml +++ b/modules/openxr/doc_classes/OpenXRSpatialPlaneTrackingCapability.xml @@ -1,5 +1,5 @@ - + Implementation for handling spatial entity plane tracking logic. diff --git a/modules/openxr/doc_classes/OpenXRSpatialQueryResultData.xml b/modules/openxr/doc_classes/OpenXRSpatialQueryResultData.xml index 4955df9433e..26c61b7efe2 100644 --- a/modules/openxr/doc_classes/OpenXRSpatialQueryResultData.xml +++ b/modules/openxr/doc_classes/OpenXRSpatialQueryResultData.xml @@ -1,5 +1,5 @@ - + Object for storing the main query result data. diff --git a/modules/openxr/doc_classes/OpenXRStructureBase.xml b/modules/openxr/doc_classes/OpenXRStructureBase.xml index db8408f1c38..984feb63a1a 100644 --- a/modules/openxr/doc_classes/OpenXRStructureBase.xml +++ b/modules/openxr/doc_classes/OpenXRStructureBase.xml @@ -1,5 +1,5 @@ - + Object for storing OpenXR structure data. diff --git a/modules/openxr/doc_classes/OpenXRVisibilityMask.xml b/modules/openxr/doc_classes/OpenXRVisibilityMask.xml index 90ee889c7ca..9dc0d914ba5 100644 --- a/modules/openxr/doc_classes/OpenXRVisibilityMask.xml +++ b/modules/openxr/doc_classes/OpenXRVisibilityMask.xml @@ -1,5 +1,5 @@ - + Draws a stereo correct visibility mask. diff --git a/modules/regex/doc_classes/RegEx.xml b/modules/regex/doc_classes/RegEx.xml index 76a763d4c8a..f4ac69e91b1 100644 --- a/modules/regex/doc_classes/RegEx.xml +++ b/modules/regex/doc_classes/RegEx.xml @@ -1,5 +1,5 @@ - + Class for searching text for patterns using regular expressions. diff --git a/modules/regex/doc_classes/RegExMatch.xml b/modules/regex/doc_classes/RegExMatch.xml index 82182f0de52..394d2efaed2 100644 --- a/modules/regex/doc_classes/RegExMatch.xml +++ b/modules/regex/doc_classes/RegExMatch.xml @@ -1,5 +1,5 @@ - + Contains the results of a [RegEx] search. diff --git a/modules/text_server_adv/doc_classes/TextServerAdvanced.xml b/modules/text_server_adv/doc_classes/TextServerAdvanced.xml index b4932559172..76a8db8ce25 100644 --- a/modules/text_server_adv/doc_classes/TextServerAdvanced.xml +++ b/modules/text_server_adv/doc_classes/TextServerAdvanced.xml @@ -1,5 +1,5 @@ - + An advanced text server with support for BiDi, complex text layout, and contextual OpenType features. Used in Godot by default. diff --git a/modules/text_server_fb/doc_classes/TextServerFallback.xml b/modules/text_server_fb/doc_classes/TextServerFallback.xml index 22e51de44ca..50b09f91f60 100644 --- a/modules/text_server_fb/doc_classes/TextServerFallback.xml +++ b/modules/text_server_fb/doc_classes/TextServerFallback.xml @@ -1,5 +1,5 @@ - + A fallback implementation of Godot's text server, without support for BiDi and complex text layout. diff --git a/modules/theora/doc_classes/VideoStreamTheora.xml b/modules/theora/doc_classes/VideoStreamTheora.xml index 97939eeaffc..7216b1b5f07 100644 --- a/modules/theora/doc_classes/VideoStreamTheora.xml +++ b/modules/theora/doc_classes/VideoStreamTheora.xml @@ -1,5 +1,5 @@ - + [VideoStream] resource for Ogg Theora videos. diff --git a/modules/upnp/doc_classes/UPNP.xml b/modules/upnp/doc_classes/UPNP.xml index 47938ef4274..8aab5d75cb2 100644 --- a/modules/upnp/doc_classes/UPNP.xml +++ b/modules/upnp/doc_classes/UPNP.xml @@ -1,5 +1,5 @@ - + Universal Plug and Play (UPnP) functions for network device discovery, querying and port forwarding. diff --git a/modules/upnp/doc_classes/UPNPDevice.xml b/modules/upnp/doc_classes/UPNPDevice.xml index 4eddca0eee9..f76e043380c 100644 --- a/modules/upnp/doc_classes/UPNPDevice.xml +++ b/modules/upnp/doc_classes/UPNPDevice.xml @@ -1,5 +1,5 @@ - + Universal Plug and Play (UPnP) device. diff --git a/modules/vorbis/doc_classes/AudioStreamOggVorbis.xml b/modules/vorbis/doc_classes/AudioStreamOggVorbis.xml index 9117d6c5915..dd16173a807 100644 --- a/modules/vorbis/doc_classes/AudioStreamOggVorbis.xml +++ b/modules/vorbis/doc_classes/AudioStreamOggVorbis.xml @@ -1,5 +1,5 @@ - + A class representing an Ogg Vorbis audio stream. diff --git a/modules/vorbis/doc_classes/AudioStreamPlaybackOggVorbis.xml b/modules/vorbis/doc_classes/AudioStreamPlaybackOggVorbis.xml index 92d74b0c5a1..f3b8dfa827e 100644 --- a/modules/vorbis/doc_classes/AudioStreamPlaybackOggVorbis.xml +++ b/modules/vorbis/doc_classes/AudioStreamPlaybackOggVorbis.xml @@ -1,5 +1,5 @@ - + Playback class used for [AudioStreamOggVorbis]. diff --git a/modules/vorbis/doc_classes/ResourceImporterOggVorbis.xml b/modules/vorbis/doc_classes/ResourceImporterOggVorbis.xml index d02a530edf8..87d2e6c2281 100644 --- a/modules/vorbis/doc_classes/ResourceImporterOggVorbis.xml +++ b/modules/vorbis/doc_classes/ResourceImporterOggVorbis.xml @@ -1,5 +1,5 @@ - + Imports an Ogg Vorbis audio file for playback. diff --git a/modules/webrtc/doc_classes/WebRTCDataChannel.xml b/modules/webrtc/doc_classes/WebRTCDataChannel.xml index 0d3063203f3..6b21c7aa829 100644 --- a/modules/webrtc/doc_classes/WebRTCDataChannel.xml +++ b/modules/webrtc/doc_classes/WebRTCDataChannel.xml @@ -1,5 +1,5 @@ - + diff --git a/modules/webrtc/doc_classes/WebRTCDataChannelExtension.xml b/modules/webrtc/doc_classes/WebRTCDataChannelExtension.xml index dc10428bbcb..dbb0980c9cd 100644 --- a/modules/webrtc/doc_classes/WebRTCDataChannelExtension.xml +++ b/modules/webrtc/doc_classes/WebRTCDataChannelExtension.xml @@ -1,5 +1,5 @@ - + diff --git a/modules/webrtc/doc_classes/WebRTCMultiplayerPeer.xml b/modules/webrtc/doc_classes/WebRTCMultiplayerPeer.xml index 63caa9e4b9f..006fc508281 100644 --- a/modules/webrtc/doc_classes/WebRTCMultiplayerPeer.xml +++ b/modules/webrtc/doc_classes/WebRTCMultiplayerPeer.xml @@ -1,5 +1,5 @@ - + A simple interface to create a peer-to-peer mesh network composed of [WebRTCPeerConnection] that is compatible with the [MultiplayerAPI]. diff --git a/modules/webrtc/doc_classes/WebRTCPeerConnection.xml b/modules/webrtc/doc_classes/WebRTCPeerConnection.xml index 9b948d3b3c3..8046ac343f2 100644 --- a/modules/webrtc/doc_classes/WebRTCPeerConnection.xml +++ b/modules/webrtc/doc_classes/WebRTCPeerConnection.xml @@ -1,5 +1,5 @@ - + Interface to a WebRTC peer connection. diff --git a/modules/webrtc/doc_classes/WebRTCPeerConnectionExtension.xml b/modules/webrtc/doc_classes/WebRTCPeerConnectionExtension.xml index 570a68f750e..8b3e48fa798 100644 --- a/modules/webrtc/doc_classes/WebRTCPeerConnectionExtension.xml +++ b/modules/webrtc/doc_classes/WebRTCPeerConnectionExtension.xml @@ -1,5 +1,5 @@ - + diff --git a/modules/websocket/doc_classes/WebSocketMultiplayerPeer.xml b/modules/websocket/doc_classes/WebSocketMultiplayerPeer.xml index b2e1cb345b9..39bd9e5612c 100644 --- a/modules/websocket/doc_classes/WebSocketMultiplayerPeer.xml +++ b/modules/websocket/doc_classes/WebSocketMultiplayerPeer.xml @@ -1,5 +1,5 @@ - + Base class for WebSocket server and client. diff --git a/modules/websocket/doc_classes/WebSocketPeer.xml b/modules/websocket/doc_classes/WebSocketPeer.xml index 8c5475a7b10..84223ccabc0 100644 --- a/modules/websocket/doc_classes/WebSocketPeer.xml +++ b/modules/websocket/doc_classes/WebSocketPeer.xml @@ -1,5 +1,5 @@ - + A WebSocket connection. diff --git a/modules/webxr/doc_classes/WebXRInterface.xml b/modules/webxr/doc_classes/WebXRInterface.xml index e03bfd0f6b5..7ef2d30cebb 100644 --- a/modules/webxr/doc_classes/WebXRInterface.xml +++ b/modules/webxr/doc_classes/WebXRInterface.xml @@ -1,5 +1,5 @@ - + XR interface using WebXR. diff --git a/modules/zip/doc_classes/ZIPPacker.xml b/modules/zip/doc_classes/ZIPPacker.xml index a937704b78b..e5cb1e42ced 100644 --- a/modules/zip/doc_classes/ZIPPacker.xml +++ b/modules/zip/doc_classes/ZIPPacker.xml @@ -1,5 +1,5 @@ - + Allows the creation of ZIP files. diff --git a/modules/zip/doc_classes/ZIPReader.xml b/modules/zip/doc_classes/ZIPReader.xml index 0536bc10a5b..f43213beeb1 100644 --- a/modules/zip/doc_classes/ZIPReader.xml +++ b/modules/zip/doc_classes/ZIPReader.xml @@ -1,5 +1,5 @@ - + Allows reading the content of a ZIP file. diff --git a/platform/android/doc_classes/EditorExportPlatformAndroid.xml b/platform/android/doc_classes/EditorExportPlatformAndroid.xml index 0b597eb0cc5..ec3b8076867 100644 --- a/platform/android/doc_classes/EditorExportPlatformAndroid.xml +++ b/platform/android/doc_classes/EditorExportPlatformAndroid.xml @@ -1,5 +1,5 @@ - + Exporter for Android. diff --git a/platform/ios/doc_classes/EditorExportPlatformIOS.xml b/platform/ios/doc_classes/EditorExportPlatformIOS.xml index c9723a52b24..5a9d647cbf3 100644 --- a/platform/ios/doc_classes/EditorExportPlatformIOS.xml +++ b/platform/ios/doc_classes/EditorExportPlatformIOS.xml @@ -1,5 +1,5 @@ - + Exporter for iOS. diff --git a/platform/linuxbsd/doc_classes/EditorExportPlatformLinuxBSD.xml b/platform/linuxbsd/doc_classes/EditorExportPlatformLinuxBSD.xml index 3a7f086cb16..47478d43e91 100644 --- a/platform/linuxbsd/doc_classes/EditorExportPlatformLinuxBSD.xml +++ b/platform/linuxbsd/doc_classes/EditorExportPlatformLinuxBSD.xml @@ -1,5 +1,5 @@ - + Exporter for Linux/BSD. diff --git a/platform/macos/doc_classes/EditorExportPlatformMacOS.xml b/platform/macos/doc_classes/EditorExportPlatformMacOS.xml index 04e611d0ec5..96c8d529888 100644 --- a/platform/macos/doc_classes/EditorExportPlatformMacOS.xml +++ b/platform/macos/doc_classes/EditorExportPlatformMacOS.xml @@ -1,5 +1,5 @@ - + Exporter for macOS. diff --git a/platform/visionos/doc_classes/EditorExportPlatformVisionOS.xml b/platform/visionos/doc_classes/EditorExportPlatformVisionOS.xml index 0297bed0576..1c7d1233088 100644 --- a/platform/visionos/doc_classes/EditorExportPlatformVisionOS.xml +++ b/platform/visionos/doc_classes/EditorExportPlatformVisionOS.xml @@ -1,5 +1,5 @@ - + Exporter for visionOS. diff --git a/platform/web/doc_classes/EditorExportPlatformWeb.xml b/platform/web/doc_classes/EditorExportPlatformWeb.xml index 0d8c791ece1..d5a933a81e1 100644 --- a/platform/web/doc_classes/EditorExportPlatformWeb.xml +++ b/platform/web/doc_classes/EditorExportPlatformWeb.xml @@ -1,5 +1,5 @@ - + Exporter for the Web. diff --git a/platform/windows/doc_classes/EditorExportPlatformWindows.xml b/platform/windows/doc_classes/EditorExportPlatformWindows.xml index 5c263d95a2a..01e08c0fcd6 100644 --- a/platform/windows/doc_classes/EditorExportPlatformWindows.xml +++ b/platform/windows/doc_classes/EditorExportPlatformWindows.xml @@ -1,5 +1,5 @@ - + Exporter for Windows.