diff --git a/doc/classes/@GlobalScope.xml b/doc/classes/@GlobalScope.xml index 193c0e8..9273e98 100644 --- a/doc/classes/@GlobalScope.xml +++ b/doc/classes/@GlobalScope.xml @@ -18,15 +18,9 @@ The [ClassDB] singleton. - - - - The [Engine] singleton. - - The [Geometry] singleton. @@ -42,30 +36,9 @@ The [JSON] singleton. - - The [JavaClassWrapper] singleton. - [b]Note:[/b] Only implemented on Android. - - - The [JavaScript] singleton. - [b]Note:[/b] Only implemented on HTML5. - - - The [Marshalls] singleton. - - - - The [Navigation2DServer] singleton. - - - The [NavigationMeshGenerator] singleton. - - - The [NavigationServer] singleton. - The [OS] singleton. @@ -77,22 +50,9 @@ The [Physics2DServer] singleton. - - The [PhysicsServer] singleton. - - - The [ProjectSettings] singleton. - - - - - - - - The [RenderingServer] singleton. @@ -113,10 +73,6 @@ The [TranslationServer] singleton. - - - - diff --git a/doc/classes/AnimatedSprite3D.xml b/doc/classes/AnimatedSprite3D.xml deleted file mode 100644 index 2bd09ba..0000000 --- a/doc/classes/AnimatedSprite3D.xml +++ /dev/null @@ -1,60 +0,0 @@ - - - - 2D sprite node in 3D world, that can use multiple 2D textures for animation. - - - Animations are created using a [SpriteFrames] resource, which can be configured in the editor via the SpriteFrames panel. - - - $DOCS_URL/tutorials/2d/2d_sprite_animation.md - - - - - - Returns [code]true[/code] if an animation is currently being played. - - - - - - - - - - - - Stops the current animation (does not reset the frame counter). - - - - - - The current animation from the [code]frames[/code] resource. If this value changes, the [code]frame[/code] counter is reset. - - - The displayed animation frame's index. - - - The [SpriteFrames] resource containing the animation(s). - - - If [code]true[/code], the [member animation] is currently playing. - - - - - - Emitted when the animation is finished (when it plays the last frame). If the animation is looping, this signal is emitted every time the last frame is drawn. - - - - - Emitted when [member frame] changed. - - - - - - diff --git a/doc/classes/Animation.xml b/doc/classes/Animation.xml index 8457698..0a71653 100644 --- a/doc/classes/Animation.xml +++ b/doc/classes/Animation.xml @@ -241,14 +241,6 @@ Returns the arguments values to be called on a method track for a given key in a given track. - - - - - - - - @@ -256,22 +248,6 @@ Removes a track by specifying the track index. - - - - - - - - - - - - - - - - @@ -534,22 +510,16 @@ Value tracks set values in node properties, but only those which can be Interpolated. - - - - - - - + Method tracks call functions with given arguments per key. - + Bezier tracks are used to interpolate a value using custom curves. They can also be used to animate sub-properties of vectors and colors (e.g. alpha value of a [Color]). - + Audio tracks are used to play an audio stream with either type of [AudioStreamPlayer]. The stream can be trimmed and previewed in the animation. - + Animation tracks play animations in other [AnimationPlayer] nodes. diff --git a/doc/classes/AnimationNode.xml b/doc/classes/AnimationNode.xml deleted file mode 100644 index a6d785a..0000000 --- a/doc/classes/AnimationNode.xml +++ /dev/null @@ -1,183 +0,0 @@ - - - - Base resource for [AnimationTree] nodes. - - - Base resource for [AnimationTree] nodes. In general, it's not used directly, but you can create custom ones with custom blending formulas. - Inherit this when creating nodes mainly for use in [AnimationNodeBlendTree], otherwise [AnimationRootNode] should be used instead. - - - $DOCS_URL/tutorials/animation/animation_tree.md - - - - - - - Adds an input to the node. This is only useful for nodes created for use in an [AnimationNodeBlendTree]. - - - - - - - - - - - - - - - - - - - - - - Blend an input. This is only useful for nodes created for an [AnimationNodeBlendTree]. The [code]time[/code] parameter is a relative delta, unless [code]seek[/code] is [code]true[/code], in which case it is absolute. A filter mode may be optionally passed (see [enum FilterAction] for options). - - - - - - - - - - - - - - - - - - When inheriting from [AnimationRootNode], implement this virtual method to override the text caption for this node. - - - - - - - When inheriting from [AnimationRootNode], implement this virtual method to return a child node by its [code]name[/code]. - - - - - - When inheriting from [AnimationRootNode], implement this virtual method to return all children nodes in order as a [code]name: node[/code] dictionary. - - - - - - Amount of inputs in this node, only useful for nodes that go into [AnimationNodeBlendTree]. - - - - - - - Gets the name of an input by index. - - - - - - - - - - - - - When inheriting from [AnimationRootNode], implement this virtual method to return the default value of parameter "[code]name[/code]". Parameters are custom local memory used for your nodes, given a resource can be reused in multiple trees. - - - - - - When inheriting from [AnimationRootNode], implement this virtual method to return a list of the properties on this node. Parameters are custom local memory used for your nodes, given a resource can be reused in multiple trees. Format is similar to [method Object.get_property_list]. - - - - - - When inheriting from [AnimationRootNode], implement this virtual method to return whether the blend tree editor should display filter editing on this node. - - - - - - - Returns whether the given path is filtered. - - - - - - - - When inheriting from [AnimationRootNode], implement this virtual method to run some code when this node is processed. The [code]time[/code] parameter is a relative delta, unless [code]seek[/code] is [code]true[/code], in which case it is absolute. - Here, call the [method blend_input], [method blend_node] or [method blend_animation] functions. You can also use [method get_parameter] and [method set_parameter] to modify local memory. - This function should return the time left for the current animation to finish (if unsure, pass the value from the main blend being called). - - - - - - - Removes an input, call this only when inactive. - - - - - - - - Adds or removes a path for the filter. - - - - - - - - - - - - - If [code]true[/code], filtering is enabled. - - - - - - Emitted when the node was removed from the graph. - - - - - Emitted by nodes that inherit from this class and that have an internal tree when one of their nodes changes. The nodes that emit this signal are [AnimationNodeBlendSpace1D], [AnimationNodeBlendSpace2D], [AnimationNodeStateMachine], and [AnimationNodeBlendTree]. - - - - - - Do not use filtering. - - - Paths matching the filter will be allowed to pass. - - - Paths matching the filter will be discarded. - - - Paths matching the filter will be blended (by the blend value). - - - diff --git a/doc/classes/AnimationNodeAdd2.xml b/doc/classes/AnimationNodeAdd2.xml deleted file mode 100644 index 2955dde..0000000 --- a/doc/classes/AnimationNodeAdd2.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - Blends two animations additively inside of an [AnimationNodeBlendTree]. - - - A resource to add to an [AnimationNodeBlendTree]. Blends two animations additively based on an amount value in the [code][0.0, 1.0][/code] range. - - - $DOCS_URL/tutorials/animation/animation_tree.md - - - - - - If [code]true[/code], sets the [code]optimization[/code] to [code]false[/code] when calling [method AnimationNode.blend_input], forcing the blended animations to update every frame. - - - - - diff --git a/doc/classes/AnimationNodeAdd3.xml b/doc/classes/AnimationNodeAdd3.xml deleted file mode 100644 index 0dad1fa..0000000 --- a/doc/classes/AnimationNodeAdd3.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - Blends two of three animations additively inside of an [AnimationNodeBlendTree]. - - - A resource to add to an [AnimationNodeBlendTree]. Blends two animations together additively out of three based on a value in the [code][-1.0, 1.0][/code] range. - This node has three inputs: - - The base animation to add to - - A -add animation to blend with when the blend amount is in the [code][-1.0, 0.0][/code] range. - - A +add animation to blend with when the blend amount is in the [code][0.0, 1.0][/code] range - - - $DOCS_URL/tutorials/animation/animation_tree.md - https://godotengine.org/asset-library/asset/678 - - - - - - If [code]true[/code], sets the [code]optimization[/code] to [code]false[/code] when calling [method AnimationNode.blend_input], forcing the blended animations to update every frame. - - - - - diff --git a/doc/classes/AnimationNodeAnimation.xml b/doc/classes/AnimationNodeAnimation.xml deleted file mode 100644 index 28443a2..0000000 --- a/doc/classes/AnimationNodeAnimation.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - Input animation to use in an [AnimationNodeBlendTree]. - - - A resource to add to an [AnimationNodeBlendTree]. Only features one output set using the [member animation] property. Use it as an input for [AnimationNode] that blend animations together. - - - $DOCS_URL/tutorials/animation/animation_tree.md - https://godotengine.org/asset-library/asset/125 - https://godotengine.org/asset-library/asset/678 - - - - - - Animation to use as an output. It is one of the animations provided by [member AnimationTree.anim_player]. - - - - - diff --git a/doc/classes/AnimationNodeBlend2.xml b/doc/classes/AnimationNodeBlend2.xml deleted file mode 100644 index fafe025..0000000 --- a/doc/classes/AnimationNodeBlend2.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - Blends two animations linearly inside of an [AnimationNodeBlendTree]. - - - A resource to add to an [AnimationNodeBlendTree]. Blends two animations linearly based on an amount value in the [code][0.0, 1.0][/code] range. - - - $DOCS_URL/tutorials/animation/animation_tree.md - https://godotengine.org/asset-library/asset/125 - https://godotengine.org/asset-library/asset/678 - - - - - - If [code]true[/code], sets the [code]optimization[/code] to [code]false[/code] when calling [method AnimationNode.blend_input], forcing the blended animations to update every frame. - - - - - diff --git a/doc/classes/AnimationNodeBlend3.xml b/doc/classes/AnimationNodeBlend3.xml deleted file mode 100644 index f78440a..0000000 --- a/doc/classes/AnimationNodeBlend3.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - Blends two of three animations linearly inside of an [AnimationNodeBlendTree]. - - - A resource to add to an [AnimationNodeBlendTree]. Blends two animations together linearly out of three based on a value in the [code][-1.0, 1.0][/code] range. - This node has three inputs: - - The base animation - - A -blend animation to blend with when the blend amount is in the [code][-1.0, 0.0][/code] range. - - A +blend animation to blend with when the blend amount is in the [code][0.0, 1.0][/code] range - - - $DOCS_URL/tutorials/animation/animation_tree.md - - - - - - If [code]true[/code], sets the [code]optimization[/code] to [code]false[/code] when calling [method AnimationNode.blend_input], forcing the blended animations to update every frame. - - - - - diff --git a/doc/classes/AnimationNodeBlendSpace1D.xml b/doc/classes/AnimationNodeBlendSpace1D.xml deleted file mode 100644 index 9d2ffb7..0000000 --- a/doc/classes/AnimationNodeBlendSpace1D.xml +++ /dev/null @@ -1,85 +0,0 @@ - - - - Blends linearly between two of any number of [AnimationNode] of any type placed on a virtual axis. - - - A resource to add to an [AnimationNodeBlendTree]. - This is a virtual axis on which you can add any type of [AnimationNode] using [method add_blend_point]. - Outputs the linear blend of the two [AnimationNode]s closest to the node's current value. - You can set the extents of the axis using the [member min_space] and [member max_space]. - - - $DOCS_URL/tutorials/animation/animation_tree.md - - - - - - - - - Adds a new point that represents a [code]node[/code] on the virtual axis at a given position set by [code]pos[/code]. You can insert it at a specific index using the [code]at_index[/code] argument. If you use the default value for [code]at_index[/code], the point is inserted at the end of the blend points array. - - - - - - Returns the number of points on the blend axis. - - - - - - - Returns the [AnimationNode] referenced by the point at index [code]point[/code]. - - - - - - - Returns the position of the point at index [code]point[/code]. - - - - - - - Removes the point at index [code]point[/code] from the blend axis. - - - - - - - - Changes the [AnimationNode] referenced by the point at index [code]point[/code]. - - - - - - - - Updates the position of the point at index [code]point[/code] on the blend axis. - - - - - - The blend space's axis's upper limit for the points' position. See [method add_blend_point]. - - - The blend space's axis's lower limit for the points' position. See [method add_blend_point]. - - - Position increment to snap to when moving a point on the axis. - - - Label of the virtual axis of the blend space. - - - - - diff --git a/doc/classes/AnimationNodeBlendSpace2D.xml b/doc/classes/AnimationNodeBlendSpace2D.xml deleted file mode 100644 index ba312ae..0000000 --- a/doc/classes/AnimationNodeBlendSpace2D.xml +++ /dev/null @@ -1,141 +0,0 @@ - - - - Blends linearly between three [AnimationNode] of any type placed in a 2D space. - - - A resource to add to an [AnimationNodeBlendTree]. - This node allows you to blend linearly between three animations using a [Vector2] weight. - You can add vertices to the blend space with [method add_blend_point] and automatically triangulate it by setting [member auto_triangles] to [code]true[/code]. Otherwise, use [method add_triangle] and [method remove_triangle] to create up the blend space by hand. - - - $DOCS_URL/tutorials/animation/animation_tree.md - https://godotengine.org/asset-library/asset/678 - - - - - - - - - Adds a new point that represents a [code]node[/code] at the position set by [code]pos[/code]. You can insert it at a specific index using the [code]at_index[/code] argument. If you use the default value for [code]at_index[/code], the point is inserted at the end of the blend points array. - - - - - - - - - - Creates a new triangle using three points [code]x[/code], [code]y[/code], and [code]z[/code]. Triangles can overlap. You can insert the triangle at a specific index using the [code]at_index[/code] argument. If you use the default value for [code]at_index[/code], the point is inserted at the end of the blend points array. - - - - - - Returns the number of points in the blend space. - - - - - - - Returns the [AnimationRootNode] referenced by the point at index [code]point[/code]. - - - - - - - Returns the position of the point at index [code]point[/code]. - - - - - - Returns the number of triangles in the blend space. - - - - - - - - Returns the position of the point at index [code]point[/code] in the triangle of index [code]triangle[/code]. - - - - - - - Removes the point at index [code]point[/code] from the blend space. - - - - - - - Removes the triangle at index [code]triangle[/code] from the blend space. - - - - - - - - Changes the [AnimationNode] referenced by the point at index [code]point[/code]. - - - - - - - - Updates the position of the point at index [code]point[/code] on the blend axis. - - - - - - If [code]true[/code], the blend space is triangulated automatically. The mesh updates every time you add or remove points with [method add_blend_point] and [method remove_blend_point]. - - - Controls the interpolation between animations. See [enum BlendMode] constants. - - - The blend space's X and Y axes' upper limit for the points' position. See [method add_blend_point]. - - - The blend space's X and Y axes' lower limit for the points' position. See [method add_blend_point]. - - - Position increment to snap to when moving a point. - - - Name of the blend space's X axis. - - - Name of the blend space's Y axis. - - - - - - Emitted every time the blend space's triangles are created, removed, or when one of their vertices changes position. - - - - - - The interpolation between animations is linear. - - - The blend space plays the animation of the node the blending position is closest to. Useful for frame-by-frame 2D animations. - - - Similar to [constant BLEND_MODE_DISCRETE], but starts the new animation at the last animation's playback position. - - - diff --git a/doc/classes/AnimationNodeBlendTree.xml b/doc/classes/AnimationNodeBlendTree.xml deleted file mode 100644 index ac91f40..0000000 --- a/doc/classes/AnimationNodeBlendTree.xml +++ /dev/null @@ -1,101 +0,0 @@ - - - - [AnimationTree] node resource that contains many blend type nodes. - - - This node may contain a sub-tree of any other blend type nodes, such as [AnimationNodeTransition], [AnimationNodeBlend2], [AnimationNodeBlend3], [AnimationNodeOneShot], etc. This is one of the most commonly used roots. - An [AnimationNodeOutput] node named [code]output[/code] is created by default. - - - $DOCS_URL/tutorials/animation/animation_tree.md - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The global offset of all sub-nodes. - - - - - The connection was successful. - - - The input node is [code]null[/code]. - - - The specified input port is out of range. - - - The output node is [code]null[/code]. - - - Input and output nodes are the same. - - - The specified connection already exists. - - - diff --git a/doc/classes/AnimationNodeOneShot.xml b/doc/classes/AnimationNodeOneShot.xml deleted file mode 100644 index 14ff574..0000000 --- a/doc/classes/AnimationNodeOneShot.xml +++ /dev/null @@ -1,40 +0,0 @@ - - - - Plays an animation once in [AnimationNodeBlendTree]. - - - A resource to add to an [AnimationNodeBlendTree]. This node will execute a sub-animation and return once it finishes. Blend times for fading in and out can be customized, as well as filters. - - - $DOCS_URL/tutorials/animation/animation_tree.md - https://godotengine.org/asset-library/asset/678 - - - - - - If [code]true[/code], the sub-animation will restart automatically after finishing. - - - The delay after which the automatic restart is triggered, in seconds. - - - If [member autorestart] is [code]true[/code], a random additional delay (in seconds) between 0 and this value will be added to [member autorestart_delay]. - - - - - - - - - - - - - - - - - diff --git a/doc/classes/AnimationNodeOutput.xml b/doc/classes/AnimationNodeOutput.xml deleted file mode 100644 index 6517592..0000000 --- a/doc/classes/AnimationNodeOutput.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - Generic output node to be added to [AnimationNodeBlendTree]. - - - - - $DOCS_URL/tutorials/animation/animation_tree.md - https://godotengine.org/asset-library/asset/125 - https://godotengine.org/asset-library/asset/678 - - - - - - diff --git a/doc/classes/AnimationNodeStateMachine.xml b/doc/classes/AnimationNodeStateMachine.xml deleted file mode 100644 index 476a475..0000000 --- a/doc/classes/AnimationNodeStateMachine.xml +++ /dev/null @@ -1,174 +0,0 @@ - - - - State machine for control of animations. - - - Contains multiple nodes representing animation states, connected in a graph. Node transitions can be configured to happen automatically or via code, using a shortest-path algorithm. Retrieve the [AnimationNodeStateMachinePlayback] object from the [AnimationTree] node to control it programmatically. - [b]Example:[/b] - [codeblock] - var state_machine = $AnimationTree.get("parameters/playback") - state_machine.travel("some_state") - [/codeblock] - - - $DOCS_URL/tutorials/animation/animation_tree.md - - - - - - - - - - - - - - - - - - - - - - Returns the graph's end node. - - - - - - Returns the draw offset of the graph. Used for display in the editor. - - - - - - - - - - - - - Returns the given animation node's name. - - - - - - - - - - - - Returns the graph's end node. - - - - - - - Returns the given transition. - - - - - - Returns the number of connections in the graph. - - - - - - - Returns the given transition's start node. - - - - - - - Returns the given transition's end node. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Deletes the given transition by index. - - - - - - - - - - - - - - - - - - - - - - - - - - - Sets the draw offset of the graph. Used for display in the editor. - - - - - - - - - - - - - - - - - - - diff --git a/doc/classes/AnimationNodeStateMachinePlayback.xml b/doc/classes/AnimationNodeStateMachinePlayback.xml deleted file mode 100644 index c410d95..0000000 --- a/doc/classes/AnimationNodeStateMachinePlayback.xml +++ /dev/null @@ -1,71 +0,0 @@ - - - - Playback control for [AnimationNodeStateMachine]. - - - Allows control of [AnimationTree] state machines created with [AnimationNodeStateMachine]. Retrieve with [code]$AnimationTree.get("parameters/playback")[/code]. - [b]Example:[/b] - [codeblock] - var state_machine = $AnimationTree.get("parameters/playback") - state_machine.travel("some_state") - [/codeblock] - - - $DOCS_URL/tutorials/animation/animation_tree.md - - - - - - - - - - - Returns the currently playing animation state. - - - - - - Returns the playback position within the current animation state. - - - - - - Returns the current travel path as computed internally by the A* algorithm. - - - - - - Returns [code]true[/code] if an animation is playing. - - - - - - - - - - - - Stops the currently playing animation. - - - - - - - - - - - - - - - diff --git a/doc/classes/AnimationNodeStateMachineTransition.xml b/doc/classes/AnimationNodeStateMachineTransition.xml deleted file mode 100644 index c272c8c..0000000 --- a/doc/classes/AnimationNodeStateMachineTransition.xml +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - - - $DOCS_URL/tutorials/animation/animation_tree.md - - - - - - Turn on auto advance when this condition is set. The provided name will become a boolean parameter on the [AnimationTree] that can be controlled from code (see [url=$DOCS_URL/tutorials/animation/animation_tree.html#controlling-from-code][/url]). For example, if [member AnimationTree.tree_root] is an [AnimationNodeStateMachine] and [member advance_condition] is set to [code]"idle"[/code]: - [codeblock] - $animation_tree["parameters/conditions/idle"] = is_on_floor and (linear_velocity.x == 0) - [/codeblock] - - - Turn on the transition automatically when this state is reached. This works best with [constant SWITCH_MODE_AT_END]. - - - Don't use this transition during [method AnimationNodeStateMachinePlayback.travel] or [member auto_advance]. - - - Lower priority transitions are preferred when travelling through the tree via [method AnimationNodeStateMachinePlayback.travel] or [member auto_advance]. - - - The transition type. - - - The time to cross-fade between this state and the next. - - - - - - Emitted when [member advance_condition] is changed. - - - - - - Switch to the next state immediately. The current state will end and blend into the beginning of the new one. - - - Switch to the next state immediately, but will seek the new state to the playback position of the old state. - - - Wait for the current state playback to end, then switch to the beginning of the next state animation. - - - diff --git a/doc/classes/AnimationNodeTimeScale.xml b/doc/classes/AnimationNodeTimeScale.xml deleted file mode 100644 index 72dc44d..0000000 --- a/doc/classes/AnimationNodeTimeScale.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - A time-scaling animation node to be used with [AnimationTree]. - - - Allows scaling the speed of the animation (or reversing it) in any children nodes. Setting it to 0 will pause the animation. - - - $DOCS_URL/tutorials/animation/animation_tree.md - https://godotengine.org/asset-library/asset/125 - - - - - - diff --git a/doc/classes/AnimationNodeTimeSeek.xml b/doc/classes/AnimationNodeTimeSeek.xml deleted file mode 100644 index 3a82de1..0000000 --- a/doc/classes/AnimationNodeTimeSeek.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - A time-seeking animation node to be used with [AnimationTree]. - - - This node can be used to cause a seek command to happen to any sub-children of the animation graph. Use this node type to play an [Animation] from the start or a certain playback position inside the [AnimationNodeBlendTree]. After setting the time and changing the animation playback, the seek node automatically goes into sleep mode on the next process frame by setting its [code]seek_position[/code] value to [code]-1.0[/code]. - [codeblock] - # Play child animation from the start. - animation_tree.set("parameters/Seek/seek_position", 0.0) - # Alternative syntax (same result as above). - animation_tree["parameters/Seek/seek_position"] = 0.0 - - # Play child animation from 12 second timestamp. - animation_tree.set("parameters/Seek/seek_position", 12.0) - # Alternative syntax (same result as above). - animation_tree["parameters/Seek/seek_position"] = 12.0 - [/codeblock] - - - $DOCS_URL/tutorials/animation/animation_tree.md - - - - - - diff --git a/doc/classes/AnimationNodeTransition.xml b/doc/classes/AnimationNodeTransition.xml deleted file mode 100644 index 0e490ff..0000000 --- a/doc/classes/AnimationNodeTransition.xml +++ /dev/null @@ -1,52 +0,0 @@ - - - - A generic animation transition node for [AnimationTree]. - - - Simple state machine for cases which don't require a more advanced [AnimationNodeStateMachine]. Animations can be connected to the inputs and transition times can be specified. - - - $DOCS_URL/tutorials/animation/animation_tree.md - https://godotengine.org/asset-library/asset/125 - https://godotengine.org/asset-library/asset/678 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The number of available input ports for this node. - - - Cross-fading time (in seconds) between each animation connected to the inputs. - - - - - diff --git a/doc/classes/AnimationRootNode.xml b/doc/classes/AnimationRootNode.xml deleted file mode 100644 index 8572b95..0000000 --- a/doc/classes/AnimationRootNode.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/doc/classes/AnimationTrackEditPlugin.xml b/doc/classes/AnimationTrackEditPlugin.xml deleted file mode 100644 index 91008a3..0000000 --- a/doc/classes/AnimationTrackEditPlugin.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/doc/classes/AnimationTree.xml b/doc/classes/AnimationTree.xml deleted file mode 100644 index 492e609..0000000 --- a/doc/classes/AnimationTree.xml +++ /dev/null @@ -1,65 +0,0 @@ - - - - A node to be used for advanced animation transitions in an [AnimationPlayer]. - - - A node to be used for advanced animation transitions in an [AnimationPlayer]. - [b]Note:[/b] When linked with an [AnimationPlayer], several properties and methods of the corresponding [AnimationPlayer] will not function as expected. Playback and transitions should be handled using only the [AnimationTree] and its constituent [AnimationNode](s). The [AnimationPlayer] node should be used solely for adding, deleting, and editing animations. - - - $DOCS_URL/tutorials/animation/animation_tree.md - https://godotengine.org/asset-library/asset/678 - - - - - - - Manually advance the animations by the specified time (in seconds). - - - - - - Retrieve the motion of the [member root_motion_track] as a [Transform] that can be used elsewhere. If [member root_motion_track] is not a path to a track of type [constant Animation.TYPE_POSITION_3D], [constant Animation.TYPE_SCALE_3D] or [constant Animation.TYPE_ROTATION_3D], returns an identity transformation. See also [member root_motion_track] and [RootMotionView]. - - - - - - - - - - - - - If [code]true[/code], the [AnimationTree] will be processing. - - - The path to the [AnimationPlayer] used for animating. - - - The process mode of this [AnimationTree]. See [enum AnimationProcessMode] for available modes. - - - The path to the Animation track used for root motion. Paths must be valid scene-tree paths to a node, and must be specified starting from the parent node of the node that will reproduce the animation. To specify a track that controls properties or bones, append its name after the path, separated by [code]":"[/code]. For example, [code]"character/skeleton:ankle"[/code] or [code]"character/mesh:transform/local"[/code]. - If the track has type [constant Animation.TYPE_POSITION_3D], [constant Animation.TYPE_ROTATION_3D] or [constant Animation.TYPE_SCALE_3D], the transformation will be cancelled visually, and the animation will appear to stay in place. See also [method get_root_motion_transform] and [RootMotionView]. - - - The root animation node of this [AnimationTree]. See [AnimationNode]. - - - - - The animations will progress during the physics frame (i.e. [method Node._physics_process]). - - - The animations will progress during the idle frame (i.e. [method Node._process]). - - - The animations will only progress manually (see [method advance]). - - - diff --git a/doc/classes/Area.xml b/doc/classes/Area.xml deleted file mode 100644 index a7d7863..0000000 --- a/doc/classes/Area.xml +++ /dev/null @@ -1,200 +0,0 @@ - - - - 3D area for detection and physics and audio influence. - - - 3D area that detects [CollisionObject] nodes overlapping, entering, or exiting. Can also alter or override local physics parameters (gravity, damping) and route audio to a custom audio bus. - To give the area its shape, add a [CollisionShape] or a [CollisionPolygon] node as a [i]direct[/i] child (or add multiple such nodes as direct children) of the area. - [b]Warning:[/b] See [ConcavePolygonShape] (also called "trimesh") for a warning about possibly unexpected behavior when using that shape for an area. - [b]Warning:[/b] With a non-uniform scale this node will probably not function as expected. Please make sure to keep its scale uniform (i.e. the same on all axes), and change the size(s) of its collision shape(s) instead. - - - https://godotengine.org/asset-library/asset/125 - https://godotengine.org/asset-library/asset/127 - - - - - - Returns a list of intersecting [Area]s. The overlapping area's [member CollisionObject.collision_layer] must be part of this area's [member CollisionObject.collision_mask] in order to be detected. - For performance reasons (collisions are all processed at the same time) this list is modified once during the physics step, not immediately after objects are moved. Consider using signals instead. - - - - - - Returns a list of intersecting [PhysicsBody]s. The overlapping body's [member CollisionObject.collision_layer] must be part of this area's [member CollisionObject.collision_mask] in order to be detected. - For performance reasons (collisions are all processed at the same time) this list is modified once during the physics step, not immediately after objects are moved. Consider using signals instead. - - - - - - - If [code]true[/code], the given area overlaps the Area. - [b]Note:[/b] The result of this test is not immediate after moving objects. For performance, list of overlaps is updated once per frame and before the physics step. Consider using signals instead. - - - - - - - If [code]true[/code], the given physics body overlaps the Area. - [b]Note:[/b] The result of this test is not immediate after moving objects. For performance, list of overlaps is updated once per frame and before the physics step. Consider using signals instead. - The [code]body[/code] argument can either be a [PhysicsBody] or a [GridMap] instance (while GridMaps are not physics body themselves, they register their tiles with collision shapes as a virtual physics body). - - - - - - The rate at which objects stop spinning in this area. Represents the angular velocity lost per second. - See [member ProjectSettings.physics/3d/default_angular_damp] for more details about damping. - - - The name of the area's audio bus. - - - If [code]true[/code], the area's audio bus overrides the default audio bus. - - - The area's gravity intensity (in meters per second squared). This value multiplies the gravity vector. This is useful to alter the force of gravity without altering its direction. - - - The falloff factor for point gravity. The greater the value, the faster gravity decreases with distance. - - - If [code]true[/code], gravity is calculated from a point (set via [member gravity_vec]). See also [member space_override]. - - - The area's gravity vector (not normalized). If gravity is a point (see [member gravity_point]), this will be the point of attraction. - - - The rate at which objects stop moving in this area. Represents the linear velocity lost per second. - See [member ProjectSettings.physics/3d/default_linear_damp] for more details about damping. - - - If [code]true[/code], other monitoring areas can detect this area. - - - If [code]true[/code], the area detects bodies or areas entering and exiting it. - - - The area's priority. Higher priority areas are processed first. - - - The degree to which this area applies reverb to its associated audio. Ranges from [code]0[/code] to [code]1[/code] with [code]0.1[/code] precision. - - - If [code]true[/code], the area applies reverb to its associated audio. - - - The reverb bus name to use for this area's associated audio. - - - The degree to which this area's reverb is a uniform effect. Ranges from [code]0[/code] to [code]1[/code] with [code]0.1[/code] precision. - - - Override mode for gravity and damping calculations within this area. See [enum SpaceOverride] for possible values. - - - - - - - Emitted when another Area enters this Area. Requires [member monitoring] to be set to [code]true[/code]. - [code]area[/code] the other Area. - - - - - - Emitted when another Area exits this Area. Requires [member monitoring] to be set to [code]true[/code]. - [code]area[/code] the other Area. - - - - - - - - - Emitted when one of another Area's [Shape]s enters one of this Area's [Shape]s. Requires [member monitoring] to be set to [code]true[/code]. - [code]area_rid[/code] the [RID] of the other Area's [CollisionObject] used by the [PhysicsServer]. - [code]area[/code] the other Area. - [code]area_shape_index[/code] the index of the [Shape] of the other Area used by the [PhysicsServer]. Get the [CollisionShape] node with [code]area.shape_owner_get_owner(area_shape_index)[/code]. - [code]local_shape_index[/code] the index of the [Shape] of this Area used by the [PhysicsServer]. Get the [CollisionShape] node with [code]self.shape_owner_get_owner(local_shape_index)[/code]. - - - - - - - - - Emitted when one of another Area's [Shape]s enters one of this Area's [Shape]s. Requires [member monitoring] to be set to [code]true[/code]. - [code]area_rid[/code] the [RID] of the other Area's [CollisionObject] used by the [PhysicsServer]. - [code]area[/code] the other Area. - [code]area_shape_index[/code] the index of the [Shape] of the other Area used by the [PhysicsServer]. Get the [CollisionShape] node with [code]area.shape_owner_get_owner(area_shape_index)[/code]. - [code]local_shape_index[/code] the index of the [Shape] of this Area used by the [PhysicsServer]. Get the [CollisionShape] node with [code]self.shape_owner_get_owner(local_shape_index)[/code]. - - - - - - Emitted when a [PhysicsBody] or [GridMap] enters this Area. Requires [member monitoring] to be set to [code]true[/code]. [GridMap]s are detected if the [MeshLibrary] has Collision [Shape]s. - [code]body[/code] the [Node], if it exists in the tree, of the other [PhysicsBody] or [GridMap]. - - - - - - Emitted when a [PhysicsBody] or [GridMap] exits this Area. Requires [member monitoring] to be set to [code]true[/code]. [GridMap]s are detected if the [MeshLibrary] has Collision [Shape]s. - [code]body[/code] the [Node], if it exists in the tree, of the other [PhysicsBody] or [GridMap]. - - - - - - - - - Emitted when one of a [PhysicsBody] or [GridMap]'s [Shape]s enters one of this Area's [Shape]s. Requires [member monitoring] to be set to [code]true[/code]. [GridMap]s are detected if the [MeshLibrary] has Collision [Shape]s. - [code]body_rid[/code] the [RID] of the [PhysicsBody] or [MeshLibrary]'s [CollisionObject] used by the [PhysicsServer]. - [code]body[/code] the [Node], if it exists in the tree, of the [PhysicsBody] or [GridMap]. - [code]body_shape_index[/code] the index of the [Shape] of the [PhysicsBody] or [GridMap] used by the [PhysicsServer]. Get the [CollisionShape] node with [code]body.shape_owner_get_owner(body_shape_index)[/code]. - [code]local_shape_index[/code] the index of the [Shape] of this Area used by the [PhysicsServer]. Get the [CollisionShape] node with [code]self.shape_owner_get_owner(local_shape_index)[/code]. - - - - - - - - - Emitted when one of a [PhysicsBody] or [GridMap]'s [Shape]s enters one of this Area's [Shape]s. Requires [member monitoring] to be set to [code]true[/code]. [GridMap]s are detected if the [MeshLibrary] has Collision [Shape]s. - [code]body_rid[/code] the [RID] of the [PhysicsBody] or [MeshLibrary]'s [CollisionObject] used by the [PhysicsServer]. - [code]body[/code] the [Node], if it exists in the tree, of the [PhysicsBody] or [GridMap]. - [code]body_shape_index[/code] the index of the [Shape] of the [PhysicsBody] or [GridMap] used by the [PhysicsServer]. Get the [CollisionShape] node with [code]body.shape_owner_get_owner(body_shape_index)[/code]. - [code]local_shape_index[/code] the index of the [Shape] of this Area used by the [PhysicsServer]. Get the [CollisionShape] node with [code]self.shape_owner_get_owner(local_shape_index)[/code]. - - - - - - This area does not affect gravity/damping. - - - This area adds its gravity/damping values to whatever has been calculated so far (in [member priority] order). - - - This area adds its gravity/damping values to whatever has been calculated so far (in [member priority] order), ignoring any lower priority areas. - - - This area replaces any gravity/damping, even the defaults, ignoring any lower priority areas. - - - This area replaces any gravity/damping calculated so far (in [member priority] order), but keeps calculating the rest of the areas. - - - diff --git a/doc/classes/ArrayMesh.xml b/doc/classes/ArrayMesh.xml index 22ff973..7ab5990 100644 --- a/doc/classes/ArrayMesh.xml +++ b/doc/classes/ArrayMesh.xml @@ -40,7 +40,7 @@ - + Creates a new surface. Surfaces are created to be rendered using a [code]primitive[/code], which may be any of the types defined in [enum Mesh.PrimitiveType]. (As a note, when using indices, it is recommended to only use points, lines, or triangles.) [method Mesh.get_surface_count] will become the [code]surf_idx[/code] for this new surface. @@ -188,17 +188,11 @@ [PoolVector2Array] for second UV coordinates. - - [PoolRealArray] or [PoolIntArray] of bone indices. Each element in groups of 4 floats. - - - [PoolRealArray] of bone weights. Each element in groups of 4 floats. - - + [PoolIntArray] of integers used as indices referencing vertices, colors, normals, tangents, and textures. All of those arrays must have the same number of elements as the vertex array. No index can be beyond the vertex array size. When this index array is present, it puts the function into "index mode," where the index selects the *i*'th vertex, normal, tangent, color, UV, etc. This means if you want to have different normals or colors along an edge, you have to duplicate the vertices. For triangles, the index array is interpreted as triples, referring to the vertices of each triangle. For lines, the index array is in pairs indicating the start and end of each line. - + Represents the size of the [enum ArrayType] enum. @@ -219,13 +213,7 @@ Array format will include another set of UVs. - - Array format will include bone indices. - - - Array format will include bone weights. - - + Index array will be used. diff --git a/doc/classes/CPUParticles2D.xml b/doc/classes/CPUParticles2D.xml index 8d3aa13..076f0ab 100644 --- a/doc/classes/CPUParticles2D.xml +++ b/doc/classes/CPUParticles2D.xml @@ -229,7 +229,6 @@ Orbital velocity randomness ratio. - Particle system starts as if it had already run for this many seconds. diff --git a/doc/classes/CapsuleShape.xml b/doc/classes/CapsuleShape.xml deleted file mode 100644 index 4da0783..0000000 --- a/doc/classes/CapsuleShape.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - Capsule shape for collisions. - - - Capsule shape for collisions. - - - https://godotengine.org/asset-library/asset/675 - - - - - - The capsule's height. - - - The capsule's radius. - - - - - diff --git a/doc/classes/ClippedCamera.xml b/doc/classes/ClippedCamera.xml deleted file mode 100644 index b36fb82..0000000 --- a/doc/classes/ClippedCamera.xml +++ /dev/null @@ -1,95 +0,0 @@ - - - - A [Camera] that includes collision. - - - This node extends [Camera] to add collisions with [Area] and/or [PhysicsBody] nodes. The camera cannot move through colliding objects. - - - - - - - - - Adds a collision exception so the camera does not collide with the specified node. - - - - - - - Adds a collision exception so the camera does not collide with the specified [RID]. - - - - - - Removes all collision exceptions. - - - - - - Returns the distance the camera has been offset due to a collision. - - - - - - - Returns [code]true[/code] if the specified bit index is on. - [b]Note:[/b] Bit indices range from 0-19. - - - - - - - Removes a collision exception with the specified node. - - - - - - - Removes a collision exception with the specified [RID]. - - - - - - - - Sets the specified bit index to the [code]value[/code]. - [b]Note:[/b] Bit indices range from 0-19. - - - - - - If [code]true[/code], the camera stops on contact with [Area]s. - - - If [code]true[/code], the camera stops on contact with [PhysicsBody]s. - - - The camera's collision mask. Only objects in at least one collision layer matching the mask will be detected. See [url=$DOCS_URL/tutorials/physics/physics_introduction.html#collision-layers-and-masks]Collision layers and masks[/url] in the documentation for more information. - - - The camera's collision margin. The camera can't get closer than this distance to a colliding object. - - - The camera's process callback. See [enum ProcessMode]. - - - - - The camera updates with the [code]_physics_process[/code] callback. - - - The camera updates with the [code]_process[/code] callback. - - - diff --git a/doc/classes/CollisionObject.xml b/doc/classes/CollisionObject.xml deleted file mode 100644 index 2ccb98f..0000000 --- a/doc/classes/CollisionObject.xml +++ /dev/null @@ -1,213 +0,0 @@ - - - - Base node for collision objects. - - - CollisionObject is the base class for physics objects. It can hold any number of collision [Shape]s. Each shape must be assigned to a [i]shape owner[/i]. The CollisionObject can have any number of shape owners. Shape owners are not nodes and do not appear in the editor, but are accessible through code using the [code]shape_owner_*[/code] methods. - [b]Warning:[/b] With a non-uniform scale this node will probably not function as expected. Please make sure to keep its scale uniform (i.e. the same on all axes), and change the size(s) of its collision shape(s) instead. - - - - - - - - - - - - - Receives unhandled [InputEvent]s. [code]position[/code] is the location in world space of the mouse pointer on the surface of the shape with index [code]shape_idx[/code] and [code]normal[/code] is the normal vector of the surface at that point. Connect to the [signal input_event] signal to easily pick up these events. - - - - - - - Creates a new shape owner for the given object. Returns [code]owner_id[/code] of the new owner for future reference. - - - - - - - Returns whether or not the specified [code]bit[/code] of the [member collision_layer] is set. - - - - - - - Returns whether or not the specified [code]bit[/code] of the [member collision_mask] is set. - - - - - - Returns the object's [RID]. - - - - - - Returns an [Array] of [code]owner_id[/code] identifiers. You can use these ids in other methods that take [code]owner_id[/code] as an argument. - - - - - - - If [code]true[/code], the shape owner and its shapes are disabled. - - - - - - - Removes the given shape owner. - - - - - - - - If [code]value[/code] is [code]true[/code], sets the specified [code]bit[/code] in the [member collision_layer]. - If [code]value[/code] is [code]false[/code], clears the specified [code]bit[/code] in the [member collision_layer]. - - - - - - - - If [code]value[/code] is [code]true[/code], sets the specified [code]bit[/code] in the [member collision_mask]. - If [code]value[/code] is [code]false[/code], clears the specified [code]bit[/code] in the [member collision_mask]. - - - - - - - Returns the [code]owner_id[/code] of the given shape. - - - - - - - - Adds a [Shape] to the shape owner. - - - - - - - Removes all shapes from the shape owner. - - - - - - - Returns the parent object of the given shape owner. - - - - - - - - Returns the [Shape] with the given id from the given shape owner. - - - - - - - Returns the number of shapes the given shape owner contains. - - - - - - - - Returns the child index of the [Shape] with the given id from the given shape owner. - - - - - - - Returns the shape owner's [Transform]. - - - - - - - - Removes a shape from the given shape owner. - - - - - - - - If [code]true[/code], disables the given shape owner. - - - - - - - - Sets the [Transform] of the given shape owner. - - - - - - The physics layers this CollisionObject3D is in. Collision objects can exist in one or more of 32 different layers. See also [member collision_mask]. - [b]Note:[/b] A contact is detected if object A is in any of the layers that object B scans, or object B is in any layers that object A scans. See [url=$DOCS_URL/tutorials/physics/physics_introduction.html#collision-layers-and-masks]Collision layers and masks[/url] in the documentation for more information. - - - The physics layers this CollisionObject3D scans. Collision objects can scan one or more of 32 different layers. See also [member collision_layer]. - [b]Note:[/b] A contact is detected if object A is in any of the layers that object B scans, or object B is in any layers that object A scans. See [url=$DOCS_URL/tutorials/physics/physics_introduction.html#collision-layers-and-masks]Collision layers and masks[/url] in the documentation for more information. - - - If [code]true[/code], the [CollisionObject] will continue to receive input events as the mouse is dragged across its shapes. - - - If [code]true[/code], this object is pickable. A pickable object can detect the mouse pointer entering/leaving, and if the mouse is inside it, report input events. Requires at least one [member collision_layer] bit to be set. - - - - - - - - - - - Emitted when the object receives an unhandled [InputEvent]. [code]position[/code] is the location in world space of the mouse pointer on the surface of the shape with index [code]shape_idx[/code] and [code]normal[/code] is the normal vector of the surface at that point. - - - - - Emitted when the mouse pointer enters any of this object's shapes. - - - - - Emitted when the mouse pointer exits all this object's shapes. - - - - - - diff --git a/doc/classes/CollisionPolygon.xml b/doc/classes/CollisionPolygon.xml deleted file mode 100644 index 0896d04..0000000 --- a/doc/classes/CollisionPolygon.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - Editor-only class for defining a collision polygon in 3D space. - - - Allows editing a collision polygon's vertices on a selected plane. Can also set a depth perpendicular to that plane. This class is only available in the editor. It will not appear in the scene tree at run-time. Creates a [Shape] for gameplay. Properties modified during gameplay will have no effect. - [b]Warning:[/b] A non-uniformly scaled CollisionPolygon3D node will probably not function as expected. Please make sure to keep its scale uniform (i.e. the same on all axes), and change its [member polygon]'s vertices instead. - - - - - - - - Length that the resulting collision extends in either direction perpendicular to its polygon. - - - If [code]true[/code], no collision will be produced. - - - The collision margin for the generated [Shape]. See [member Shape.margin] for more details. - - - Array of vertices which define the polygon. - [b]Note:[/b] The returned value is a copy of the original. Methods which mutate the size or properties of the return value will not impact the original polygon. To change properties of the polygon, assign it to a temporary variable and make changes before reassigning the [code]polygon[/code] member. - - - - - diff --git a/doc/classes/CollisionShape.xml b/doc/classes/CollisionShape.xml deleted file mode 100644 index f27ed87..0000000 --- a/doc/classes/CollisionShape.xml +++ /dev/null @@ -1,42 +0,0 @@ - - - - Node that represents collision shape data in 3D space. - - - Editor facility for creating and editing collision shapes in 3D space. Set the [member shape] property to configure the shape. [b]IMPORTANT[/b]: this is an Editor-only helper to create shapes, use [method CollisionObject.shape_owner_get_shape] to get the actual shape. - You can use this node to represent all sorts of collision shapes, for example, add this to an [Area] to give it a detection shape, or add it to a [PhysicsBody] to create a solid object. - [b]Warning:[/b] A non-uniformly scaled CollisionShape3D node will probably not function as expected. Please make sure to keep its scale uniform (i.e. the same on all axes), and change the size of its [member shape] resource instead. - - - $DOCS_URL/tutorials/physics/physics_introduction.md - https://godotengine.org/asset-library/asset/126 - https://godotengine.org/asset-library/asset/125 - https://godotengine.org/asset-library/asset/678 - - - - - - Sets the collision shape's shape to the addition of all its convexed [MeshInstance] siblings geometry. - - - - - - - If this method exists within a script it will be called whenever the shape resource has been modified. - - - - - - A disabled collision shape has no effect in the world. - - - The actual shape owned by this collision shape. - - - - - diff --git a/doc/classes/ConcavePolygonShape.xml b/doc/classes/ConcavePolygonShape.xml deleted file mode 100644 index 2a48616..0000000 --- a/doc/classes/ConcavePolygonShape.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - Concave polygon shape. - - - Concave polygon shape resource, which can be set into a [PhysicsBody] or area. This shape is created by feeding a list of triangles. - [b]Note:[/b] When used for collision, [ConcavePolygonShape] is intended to work with static [PhysicsBody] nodes like [StaticBody] and will not work with [KinematicBody] or [RigidBody] with a mode other than Static. - [b]Warning:[/b] Using this shape for an [Area] (via a [CollisionShape] node, created e.g. by using the [i]Create Trimesh Collision Sibling[/i] option in the [i]Mesh[/i] menu that appears when selecting a [MeshInstance] node) may give unexpected results: when using Godot Physics, the area will only detect collisions with the triangle faces in the [ConcavePolygonShape] (and not with any "inside" of the shape, for example), and when using Bullet Physics the area will not detect any collisions with the concave shape at all (this is a known bug). - - - https://godotengine.org/asset-library/asset/675 - - - - - - Returns the faces (an array of triangles). - - - - - - - Sets the faces (an array of triangles). - - - - - - diff --git a/doc/classes/ConeTwistJoint.xml b/doc/classes/ConeTwistJoint.xml deleted file mode 100644 index 786c125..0000000 --- a/doc/classes/ConeTwistJoint.xml +++ /dev/null @@ -1,75 +0,0 @@ - - - - A twist joint between two 3D PhysicsBodies. - - - The joint can rotate the bodies across an axis defined by the local x-axes of the [Joint]. - The twist axis is initiated as the X axis of the [Joint]. - Once the Bodies swing, the twist axis is calculated as the middle of the x-axes of the Joint in the local space of the two Bodies. See also [Generic6DOFJoint]. - - - - - - - - - - - - - - - - - - - - - The speed with which the swing or twist will take place. - The higher, the faster. - - - Defines, how fast the swing- and twist-speed-difference on both sides gets synced. - - - The ease with which the joint starts to twist. If it's too low, it takes more force to start twisting the joint. - - - Swing is rotation from side to side, around the axis perpendicular to the twist axis. - The swing span defines, how much rotation will not get corrected along the swing axis. - Could be defined as looseness in the [ConeTwistJoint]. - If below 0.05, this behavior is locked. - - - Twist is the rotation around the twist axis, this value defined how far the joint can twist. - Twist is locked if below 0.05. - - - - - Swing is rotation from side to side, around the axis perpendicular to the twist axis. - The swing span defines, how much rotation will not get corrected along the swing axis. - Could be defined as looseness in the [ConeTwistJoint]. - If below 0.05, this behavior is locked. - - - Twist is the rotation around the twist axis, this value defined how far the joint can twist. - Twist is locked if below 0.05. - - - The speed with which the swing or twist will take place. - The higher, the faster. - - - The ease with which the joint starts to twist. If it's too low, it takes more force to start twisting the joint. - - - Defines, how fast the swing- and twist-speed-difference on both sides gets synced. - - - Represents the size of the [enum Param] enum. - - - diff --git a/doc/classes/ConfirmationDialog.xml b/doc/classes/ConfirmationDialog.xml index 5de22f2..7db862e 100644 --- a/doc/classes/ConfirmationDialog.xml +++ b/doc/classes/ConfirmationDialog.xml @@ -22,7 +22,6 @@ - diff --git a/doc/classes/Control.xml b/doc/classes/Control.xml index e029f3a..d58eb4d 100644 --- a/doc/classes/Control.xml +++ b/doc/classes/Control.xml @@ -751,7 +751,6 @@ Controls whether the control will be able to receive mouse button input events through [method _gui_input] and how these events should be handled. Also controls whether the control can receive the [signal mouse_entered], and [signal mouse_exited] signals. See the constants to learn what each does. - Enables whether rendering of [CanvasItem] based children should be clipped to this control's rectangle. If [code]true[/code], parts of a child which would be visibly outside of this control's rectangle will not be rendered. diff --git a/doc/classes/ConvexPolygonShape.xml b/doc/classes/ConvexPolygonShape.xml deleted file mode 100644 index 2fbfafc..0000000 --- a/doc/classes/ConvexPolygonShape.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - Convex polygon shape for 3D physics. - - - Convex polygon shape resource, which can be added to a [PhysicsBody] or area. - - - https://godotengine.org/asset-library/asset/675 - - - - - - The list of 3D points forming the convex polygon shape. - - - - - diff --git a/doc/classes/CullInstance.xml b/doc/classes/CullInstance.xml deleted file mode 100644 index ade3172..0000000 --- a/doc/classes/CullInstance.xml +++ /dev/null @@ -1,54 +0,0 @@ - - - - Parent of all nodes that can be culled by the Portal system. - - - Provides common functionality to nodes that can be culled by the [Portal] system. - [code]Static[/code] and [code]Dynamic[/code] objects are the most efficiently managed objects in the system, but there are some caveats. They are expected to be present initially when [Room]s are converted using the [RoomManager] [code]rooms_convert[/code] function, and their lifetime should be the same as the game level (i.e. present until you call [code]rooms_clear[/code] on the [RoomManager]. Although you shouldn't create / delete these objects during gameplay, you can manage their visibility with the standard [code]hide[/code] and [code]show[/code] commands. - [code]Roaming[/code] objects on the other hand, require extra processing to keep track of which [Room] they are within. This enables them to be culled effectively, wherever they are. - [code]Global[/code] objects are not culled by the portal system, and use view frustum culling only. - Objects that are not [code]Static[/code] or [code]Dynamic[/code] can be freely created and deleted during the lifetime of the game level. - - - - - - - - This allows fine control over the mesh merging feature in the [RoomManager]. - Setting this option to [code]false[/code] can be used to prevent an instance being merged. - - - When set to [code]0[/code], [CullInstance]s will be autoplaced in the [Room] with the highest priority. - When set to a value other than [code]0[/code], the system will attempt to autoplace in a [Room] with the [code]autoplace_priority[/code], if it is present. - This can be used to control autoplacement of building exteriors in an outer [RoomGroup]. - - - When a manual bound has not been explicitly specified for a [Room], the convex hull bound will be estimated from the geometry of the objects within the room. This setting determines whether the geometry of an object is included in this estimate of the room bound. - [b]Note:[/b] This setting is only relevant when the object is set to [code]PORTAL_MODE_STATIC[/code] or [code]PORTAL_MODE_DYNAMIC[/code], and for [Portal]s. - - - When using [Room]s and [Portal]s, this specifies how the [CullInstance] is processed in the system. - - - - - Use for instances within [Room]s that will [b]not move[/b] - e.g. walls, floors. - [b]Note:[/b] If you attempt to delete a [code]PORTAL_MODE_STATIC[/code] instance while the room graph is loaded (converted), it will unload the room graph and deactivate portal culling. This is because the [b]room graph[/b] data has been invalidated. You will need to reconvert the rooms using the [RoomManager] to activate the system again. - - - Use for instances within rooms that will move but [b]not change room[/b] - e.g. moving platforms. - [b]Note:[/b] If you attempt to delete a [code]PORTAL_MODE_DYNAMIC[/code] instance while the room graph is loaded (converted), it will unload the room graph and deactivate portal culling. This is because the [b]room graph[/b] data has been invalidated. You will need to reconvert the rooms using the [RoomManager] to activate the system again. - - - Use for instances that will move [b]between[/b] [Room]s - e.g. players. - - - Use for instances that will be frustum culled only - e.g. first person weapon, debug. - - - Use for instances that will not be shown at all - e.g. [b]manual room bounds[/b] (specified by prefix [i]'Bound_'[/i]). - - - diff --git a/doc/classes/CylinderShape.xml b/doc/classes/CylinderShape.xml deleted file mode 100644 index 74df9df..0000000 --- a/doc/classes/CylinderShape.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - Cylinder shape for collisions. - - - Cylinder shape for collisions. - - - https://godotengine.org/asset-library/asset/678 - https://godotengine.org/asset-library/asset/675 - https://godotengine.org/asset-library/asset/676 - - - - - - The cylinder's height. - - - The cylinder's radius. - - - - - diff --git a/doc/classes/DirectionalLight.xml b/doc/classes/DirectionalLight.xml deleted file mode 100644 index 48408ea..0000000 --- a/doc/classes/DirectionalLight.xml +++ /dev/null @@ -1,63 +0,0 @@ - - - - Directional light from a distance, as from the Sun. - - - A directional light is a type of [Light] node that models an infinite number of parallel rays covering the entire scene. It is used for lights with strong intensity that are located far away from the scene to model sunlight or moonlight. The worldspace location of the DirectionalLight transform (origin) is ignored. Only the basis is used to determine light direction. - - - $DOCS_URL/tutorials/3d/lights_and_shadows.md - - - - - - Amount of extra bias for shadow splits that are far away. If self-shadowing occurs only on the splits far away, increasing this value can fix them. This is ignored when [member directional_shadow_mode] is [constant SHADOW_ORTHOGONAL]. - - - If [code]true[/code], shadow detail is sacrificed in exchange for smoother transitions between splits. Enabling shadow blend splitting also has a moderate performance cost. This is ignored when [member directional_shadow_mode] is [constant SHADOW_ORTHOGONAL]. - - - Optimizes shadow rendering for detail versus movement. See [enum ShadowDepthRange]. - - - The maximum distance for shadow splits. Increasing this value will make directional shadows visible from further away, at the cost of lower overall shadow detail and performance (since more objects need to be included in the directional shadow rendering). - - - The light's shadow rendering algorithm. See [enum ShadowMode]. - - - Can be used to fix special cases of self shadowing when objects are perpendicular to the light. - - - The distance from camera to shadow split 1. Relative to [member directional_shadow_max_distance]. Only used when [member directional_shadow_mode] is [constant SHADOW_PARALLEL_2_SPLITS] or [constant SHADOW_PARALLEL_4_SPLITS]. - - - The distance from shadow split 1 to split 2. Relative to [member directional_shadow_max_distance]. Only used when [member directional_shadow_mode] is [constant SHADOW_PARALLEL_2_SPLITS] or [constant SHADOW_PARALLEL_4_SPLITS]. - - - The distance from shadow split 2 to split 3. Relative to [member directional_shadow_max_distance]. Only used when [member directional_shadow_mode] is [constant SHADOW_PARALLEL_4_SPLITS]. - - - - - Renders the entire scene's shadow map from an orthogonal point of view. This is the fastest directional shadow mode. May result in blurrier shadows on close objects. - - - Splits the view frustum in 2 areas, each with its own shadow map. This shadow mode is a compromise between [constant SHADOW_ORTHOGONAL] and [constant SHADOW_PARALLEL_4_SPLITS] in terms of performance. - - - Splits the view frustum in 3 areas, each with its own shadow map. This shadow mode is a compromise between [constant SHADOW_ORTHOGONAL] and [constant SHADOW_PARALLEL_4_SPLITS] in terms of performance. - - - Splits the view frustum in 4 areas, each with its own shadow map. This is the slowest directional shadow mode. - - - Keeps the shadow stable when the camera moves, at the cost of lower effective shadow resolution. - - - Tries to achieve maximum shadow resolution. May result in saw effect on shadow edges. This mode typically works best in games where the camera will often move at high speeds, such as most racing games. - - - diff --git a/doc/classes/File.xml b/doc/classes/File.xml index db53a75..a39fa1b 100644 --- a/doc/classes/File.xml +++ b/doc/classes/File.xml @@ -220,35 +220,6 @@ Opens the file for writing or reading, depending on the flags. - - - - - - - Opens a compressed file for reading or writing. - [b]Note:[/b] [method open_compressed] can only read files that were saved by Godot, not third-party compression formats. See [url=https://github.com/godotengine/godot/issues/28999]GitHub issue #28999[/url] for a workaround. - - - - - - - - - Opens an encrypted file in write or read mode. You need to pass a binary key to encrypt/decrypt it. - [b]Note:[/b] The provided key must be 32 bytes long. - - - - - - - - - Opens an encrypted file in write or read mode. You need to pass a password to encrypt/decrypt it. - - @@ -407,17 +378,5 @@ Opens the file for read and write operations. The file is created if it does not exist, and truncated if it does. The cursor is positioned at the beginning of the file. - - Uses the [url=http://fastlz.org/]FastLZ[/url] compression method. - - - Uses the [url=https://en.wikipedia.org/wiki/DEFLATE]DEFLATE[/url] compression method. - - - Uses the [url=https://facebook.github.io/zstd/]Zstandard[/url] compression method. - - - Uses the [url=https://www.gzip.org/]gzip[/url] compression method. - diff --git a/doc/classes/FileSystemDock.xml b/doc/classes/FileSystemDock.xml deleted file mode 100644 index 4aa6e8b..0000000 --- a/doc/classes/FileSystemDock.xml +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/doc/classes/Generic6DOFJoint.xml b/doc/classes/Generic6DOFJoint.xml deleted file mode 100644 index 801cbb6..0000000 --- a/doc/classes/Generic6DOFJoint.xml +++ /dev/null @@ -1,406 +0,0 @@ - - - - The generic 6-degrees-of-freedom joint can implement a variety of joint types by locking certain axes' rotation or translation. - - - The first 3 DOF axes are linear axes, which represent translation of Bodies, and the latter 3 DOF axes represent the angular motion. Each axis can be either locked, or limited. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The amount of rotational damping across the X axis. - The lower, the longer an impulse from one side takes to travel to the other side. - - - If [code]true[/code], rotation across the X axis is limited. - - - When rotating across the X axis, this error tolerance factor defines how much the correction gets slowed down. The lower, the slower. - - - The maximum amount of force that can occur, when rotating around the X axis. - - - The minimum rotation in negative direction to break loose and rotate around the X axis. - - - The amount of rotational restitution across the X axis. The lower, the more restitution occurs. - - - The speed of all rotations across the X axis. - - - The minimum rotation in positive direction to break loose and rotate around the X axis. - - - The amount of rotational damping across the Y axis. The lower, the more dampening occurs. - - - If [code]true[/code], rotation across the Y axis is limited. - - - When rotating across the Y axis, this error tolerance factor defines how much the correction gets slowed down. The lower, the slower. - - - The maximum amount of force that can occur, when rotating around the Y axis. - - - The minimum rotation in negative direction to break loose and rotate around the Y axis. - - - The amount of rotational restitution across the Y axis. The lower, the more restitution occurs. - - - The speed of all rotations across the Y axis. - - - The minimum rotation in positive direction to break loose and rotate around the Y axis. - - - The amount of rotational damping across the Z axis. The lower, the more dampening occurs. - - - If [code]true[/code], rotation across the Z axis is limited. - - - When rotating across the Z axis, this error tolerance factor defines how much the correction gets slowed down. The lower, the slower. - - - The maximum amount of force that can occur, when rotating around the Z axis. - - - The minimum rotation in negative direction to break loose and rotate around the Z axis. - - - The amount of rotational restitution across the Z axis. The lower, the more restitution occurs. - - - The speed of all rotations across the Z axis. - - - The minimum rotation in positive direction to break loose and rotate around the Z axis. - - - If [code]true[/code], a rotating motor at the X axis is enabled. - - - Maximum acceleration for the motor at the X axis. - - - Target speed for the motor at the X axis. - - - If [code]true[/code], a rotating motor at the Y axis is enabled. - - - Maximum acceleration for the motor at the Y axis. - - - Target speed for the motor at the Y axis. - - - If [code]true[/code], a rotating motor at the Z axis is enabled. - - - Maximum acceleration for the motor at the Z axis. - - - Target speed for the motor at the Z axis. - - - - - - - - - - - - - - - - - - - - - - - - - - - The amount of damping that happens at the X motion. - - - If [code]true[/code], the linear motion across the X axis is limited. - - - The minimum difference between the pivot points' X axis. - - - The amount of restitution on the X axis movement. The lower, the more momentum gets lost. - - - A factor applied to the movement across the X axis. The lower, the slower the movement. - - - The maximum difference between the pivot points' X axis. - - - The amount of damping that happens at the Y motion. - - - If [code]true[/code], the linear motion across the Y axis is limited. - - - The minimum difference between the pivot points' Y axis. - - - The amount of restitution on the Y axis movement. The lower, the more momentum gets lost. - - - A factor applied to the movement across the Y axis. The lower, the slower the movement. - - - The maximum difference between the pivot points' Y axis. - - - The amount of damping that happens at the Z motion. - - - If [code]true[/code], the linear motion across the Z axis is limited. - - - The minimum difference between the pivot points' Z axis. - - - The amount of restitution on the Z axis movement. The lower, the more momentum gets lost. - - - A factor applied to the movement across the Z axis. The lower, the slower the movement. - - - The maximum difference between the pivot points' Z axis. - - - If [code]true[/code], then there is a linear motor on the X axis. It will attempt to reach the target velocity while staying within the force limits. - - - The maximum force the linear motor can apply on the X axis while trying to reach the target velocity. - - - The speed that the linear motor will attempt to reach on the X axis. - - - If [code]true[/code], then there is a linear motor on the Y axis. It will attempt to reach the target velocity while staying within the force limits. - - - The maximum force the linear motor can apply on the Y axis while trying to reach the target velocity. - - - The speed that the linear motor will attempt to reach on the Y axis. - - - If [code]true[/code], then there is a linear motor on the Z axis. It will attempt to reach the target velocity while staying within the force limits. - - - The maximum force the linear motor can apply on the Z axis while trying to reach the target velocity. - - - The speed that the linear motor will attempt to reach on the Z axis. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The minimum difference between the pivot points' axes. - - - The maximum difference between the pivot points' axes. - - - A factor applied to the movement across the axes. The lower, the slower the movement. - - - The amount of restitution on the axes' movement. The lower, the more momentum gets lost. - - - The amount of damping that happens at the linear motion across the axes. - - - The velocity the linear motor will try to reach. - - - The maximum force the linear motor will apply while trying to reach the velocity target. - - - - - - - - - The minimum rotation in negative direction to break loose and rotate around the axes. - - - The minimum rotation in positive direction to break loose and rotate around the axes. - - - The speed of all rotations across the axes. - - - The amount of rotational damping across the axes. The lower, the more dampening occurs. - - - The amount of rotational restitution across the axes. The lower, the more restitution occurs. - - - The maximum amount of force that can occur, when rotating around the axes. - - - When rotating across the axes, this error tolerance factor defines how much the correction gets slowed down. The lower, the slower. - - - Target speed for the motor at the axes. - - - Maximum acceleration for the motor at the axes. - - - - - - - - - Represents the size of the [enum Param] enum. - - - If enabled, linear motion is possible within the given limits. - - - If enabled, rotational motion is possible within the given limits. - - - - - - - If enabled, there is a rotational motor across these axes. - - - If enabled, there is a linear motor across these axes. - - - Represents the size of the [enum Flag] enum. - - - diff --git a/doc/classes/GeometryInstance.xml b/doc/classes/GeometryInstance.xml deleted file mode 100644 index 838c20b..0000000 --- a/doc/classes/GeometryInstance.xml +++ /dev/null @@ -1,90 +0,0 @@ - - - - Base node for geometry-based visual instances. - - - Base node for geometry-based visual instances. Shares some common functionality like visibility and custom materials. - - - - - - - - - Returns the [enum GeometryInstance.Flags] that have been set for this object. - - - - - - - Overrides the bounding box of this node with a custom one. To remove it, set an [AABB] with all fields set to zero. - - - - - - - - Sets the [enum GeometryInstance.Flags] specified. See [enum GeometryInstance.Flags] for options. - - - - - - The selected shadow casting flag. See [enum ShadowCastingSetting] for possible values. - - - The extra distance added to the GeometryInstance's bounding box ([AABB]) to increase its cull box. - - - The GeometryInstance's max LOD distance. - [b]Note:[/b] This property currently has no effect. - - - The GeometryInstance's max LOD margin. - [b]Note:[/b] This property currently has no effect. - - - The GeometryInstance's min LOD distance. - [b]Note:[/b] This property currently has no effect. - - - The GeometryInstance's min LOD margin. - [b]Note:[/b] This property currently has no effect. - - - The material overlay for the whole geometry. - If a material is assigned to this property, it will be rendered on top of any other active material for all the surfaces. - - - The material override for the whole geometry. - If a material is assigned to this property, it will be used instead of any material set in any material slot of the mesh. - - - - - Will not cast any shadows. - - - Will cast shadows from all visible faces in the GeometryInstance. - Will take culling into account, so faces not being rendered will not be taken into account when shadow casting. - - - Will cast shadows from all visible faces in the GeometryInstance. - Will not take culling into account, so all faces will be taken into account when shadow casting. - - - Will only show the shadows casted from this object. - In other words, the actual mesh will not be visible, only the shadows casted from the mesh will be. - - - Unused in this class, exposed for consistency with [enum RenderingServer.InstanceFlags]. - - - Represents the size of the [enum Flags] enum. - - - diff --git a/doc/classes/HeightMapShape.xml b/doc/classes/HeightMapShape.xml deleted file mode 100644 index ed82a19..0000000 --- a/doc/classes/HeightMapShape.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - Height map shape for 3D physics. - - - Height map shape resource, which can be added to a [PhysicsBody] or [Area]. - - - - - - - - Height map data, pool array must be of [member map_width] * [member map_depth] size. - - - Number of vertices in the depth of the height map. Changing this will resize the [member map_data]. - - - Number of vertices in the width of the height map. Changing this will resize the [member map_data]. - - - - - diff --git a/doc/classes/HingeJoint.xml b/doc/classes/HingeJoint.xml deleted file mode 100644 index d670e40..0000000 --- a/doc/classes/HingeJoint.xml +++ /dev/null @@ -1,111 +0,0 @@ - - - - A hinge between two 3D PhysicsBodies. - - - A HingeJoint normally uses the Z axis of body A as the hinge axis, another axis can be specified when adding it manually though. See also [Generic6DOFJoint]. - - - - - - - - - Returns the value of the specified flag. - - - - - - - Returns the value of the specified parameter. - - - - - - - - If [code]true[/code], enables the specified flag. - - - - - - - - Sets the value of the specified parameter. - - - - - - The speed with which the rotation across the axis perpendicular to the hinge gets corrected. - - - If [code]true[/code], the hinges maximum and minimum rotation, defined by [member angular_limit/lower] and [member angular_limit/upper] has effects. - - - The minimum rotation. Only active if [member angular_limit/enable] is [code]true[/code]. - - - The lower this value, the more the rotation gets slowed down. - - - - - The maximum rotation. Only active if [member angular_limit/enable] is [code]true[/code]. - - - When activated, a motor turns the hinge. - - - Maximum acceleration for the motor. - - - Target speed for the motor. - - - The speed with which the two bodies get pulled together when they move in different directions. - - - - - The speed with which the two bodies get pulled together when they move in different directions. - - - The maximum rotation. Only active if [member angular_limit/enable] is [code]true[/code]. - - - The minimum rotation. Only active if [member angular_limit/enable] is [code]true[/code]. - - - The speed with which the rotation across the axis perpendicular to the hinge gets corrected. - - - - - The lower this value, the more the rotation gets slowed down. - - - Target speed for the motor. - - - Maximum acceleration for the motor. - - - Represents the size of the [enum Param] enum. - - - If [code]true[/code], the hinges maximum and minimum rotation, defined by [member angular_limit/lower] and [member angular_limit/upper] has effects. - - - When activated, a motor turns the hinge. - - - Represents the size of the [enum Flag] enum. - - - diff --git a/doc/classes/ImmediateGeometry.xml b/doc/classes/ImmediateGeometry.xml deleted file mode 100644 index 7b2f312..0000000 --- a/doc/classes/ImmediateGeometry.xml +++ /dev/null @@ -1,92 +0,0 @@ - - - - Draws simple geometry from code. - - - Draws simple geometry from code. Uses a drawing mode similar to OpenGL 1.x. - See also [ArrayMesh], [MeshDataTool] and [SurfaceTool] for procedural geometry generation. - [b]Note:[/b] ImmediateGeometry3D is best suited to small amounts of mesh data that change every frame. It will be slow when handling large amounts of mesh data. If mesh data doesn't change often, use [ArrayMesh], [MeshDataTool] or [SurfaceTool] instead. - [b]Note:[/b] Godot uses clockwise [url=https://learnopengl.com/Advanced-OpenGL/Face-culling]winding order[/url] for front faces of triangle primitive modes. - [b]Note:[/b] In case of missing points when handling large amounts of mesh data, try increasing its buffer size limit under [member ProjectSettings.rendering/limits/buffers/immediate_buffer_size_kb]. - - - - - - - - - - - - Simple helper to draw an UV sphere with given latitude, longitude and radius. - - - - - - - Adds a vertex in local coordinate space with the currently set color/uv/etc. - - - - - - - - Begin drawing (and optionally pass a texture override). When done call [method end]. For more information on how this works, search for [code]glBegin()[/code] and [code]glEnd()[/code] references. - For the type of primitive, see the [enum Mesh.PrimitiveType] enum. - - - - - - Clears everything that was drawn using begin/end. - - - - - - Ends a drawing context and displays the results. - - - - - - - The current drawing color. - - - - - - - The next vertex's normal. - - - - - - - The next vertex's tangent (and binormal facing). - - - - - - - The next vertex's UV. - - - - - - - The next vertex's second layer UV. - - - - - - diff --git a/doc/classes/InterpolatedCamera.xml b/doc/classes/InterpolatedCamera.xml deleted file mode 100644 index 2d7d99d..0000000 --- a/doc/classes/InterpolatedCamera.xml +++ /dev/null @@ -1,43 +0,0 @@ - - - - [i]Deprecated.[/i] Camera which moves toward another node. - - - [i]Deprecated (will be removed in Godot 4.0).[/i] InterpolatedCamera is a [Camera] which smoothly moves to match a target node's position and rotation. - If it is not [member enabled] or does not have a valid target set, InterpolatedCamera acts like a normal Camera. - - - - - - - - - Sets the node to move toward and orient with. - - - - - - If [code]true[/code], and a target is set, the camera will move automatically. - - - The camera's process callback. See [enum InterpolatedCameraProcessMode]. - - - How quickly the camera moves toward its target. Higher values will result in tighter camera motion. - - - The target's [NodePath]. - - - - - The camera updates with the [code]_physics_process[/code] callback. - - - The camera updates with the [code]_process[/code] callback. - - - diff --git a/doc/classes/JNISingleton.xml b/doc/classes/JNISingleton.xml deleted file mode 100644 index 839a618..0000000 --- a/doc/classes/JNISingleton.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - Singleton that connects the engine with Android plugins to interface with native Android code. - - - The JNISingleton is implemented only in the Android export. It's used to call methods and connect signals from an Android plugin written in Java or Kotlin. Methods and signals can be called and connected to the JNISingleton as if it is a Node. See [url=https://en.wikipedia.org/wiki/Java_Native_Interface]Java Native Interface - Wikipedia[/url] for more information. - - - $DOCS_URL/tutorials/platform/android/android_plugin.md - - - - - - diff --git a/doc/classes/JavaClass.xml b/doc/classes/JavaClass.xml deleted file mode 100644 index a3061bf..0000000 --- a/doc/classes/JavaClass.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/doc/classes/JavaClassWrapper.xml b/doc/classes/JavaClassWrapper.xml deleted file mode 100644 index 024ab44..0000000 --- a/doc/classes/JavaClassWrapper.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/doc/classes/JavaScript.xml b/doc/classes/JavaScript.xml deleted file mode 100644 index b54ace1..0000000 --- a/doc/classes/JavaScript.xml +++ /dev/null @@ -1,88 +0,0 @@ - - - - Singleton that connects the engine with the browser's JavaScript context in HTML5 export. - - - The JavaScript singleton is implemented only in the HTML5 export. It's used to access the browser's JavaScript context. This allows interaction with embedding pages or calling third-party JavaScript APIs. - [b]Note:[/b] This singleton can be disabled at build-time to improve security. By default, the JavaScript singleton is enabled. Official export templates also have the JavaScript singleton enabled. See [url=$DOCS_URL/development/compiling/compiling_for_web.html]Compiling for the Web[/url] in the documentation for more information. - - - $DOCS_URL/tutorials/export/exporting_for_web.html#calling-javascript-from-script - - - - - - - - - - - - - - Creates a new JavaScript object using the [code]new[/code] constructor. The [code]object[/code] must a valid property of the JavaScript [code]window[/code]. See [JavaScriptObject] for usage. - - - - - - - - - Prompts the user to download a file containing the specified [code]buffer[/code]. The file will have the given [code]name[/code] and [code]mime[/code] type. - [b]Note:[/b] The browser may override the [url=https://en.wikipedia.org/wiki/Media_type]MIME type[/url] provided based on the file [code]name[/code]'s extension. - [b]Note:[/b] Browsers might block the download if [method download_buffer] is not being called from a user interaction (e.g. button click). - [b]Note:[/b] Browsers might ask the user for permission or block the download if multiple download requests are made in a quick succession. - - - - - - - - Execute the string [code]code[/code] as JavaScript code within the browser window. This is a call to the actual global JavaScript function [code]eval()[/code]. - If [code]use_global_execution_context[/code] is [code]true[/code], the code will be evaluated in the global execution context. Otherwise, it is evaluated in the execution context of a function within the engine's runtime environment. - - - - - - Force synchronization of the persistent file system (when enabled). - [b]Note:[/b] This is only useful for modules or extensions that can't use [File] to write files. - - - - - - - Returns an interface to a JavaScript object that can be used by scripts. The [code]interface[/code] must be a valid property of the JavaScript [code]window[/code]. The callback must accept a single [Array] argument, which will contain the JavaScript [code]arguments[/code]. See [JavaScriptObject] for usage. - - - - - - Returns [code]true[/code] if a new version of the progressive web app is waiting to be activated. - [b]Note:[/b] Only relevant when exported as a Progressive Web App. - - - - - - Performs the live update of the progressive web app. Forcing the new version to be installed and the page to be reloaded. - [b]Note:[/b] Your application will be [b]reloaded in all browser tabs[/b]. - [b]Note:[/b] Only relevant when exported as a Progressive Web App and [method pwa_needs_update] returns [code]true[/code]. - - - - - - - Emitted when an update for this progressive web app has been detected but is waiting to be activated because a previous version is active. See [method pwa_update] to force the update to take place immediately. - - - - - - diff --git a/doc/classes/JavaScriptObject.xml b/doc/classes/JavaScriptObject.xml deleted file mode 100644 index 51950a1..0000000 --- a/doc/classes/JavaScriptObject.xml +++ /dev/null @@ -1,42 +0,0 @@ - - - - A wrapper class for native JavaScript objects. - - - JavaScriptObject is used to interact with JavaScript objects retrieved or created via [method JavaScript.get_interface], [method JavaScript.create_object], or [method JavaScript.create_callback]. - Example: - [codeblock] - extends Node - - var _my_js_callback = JavaScript.create_callback(self, "myCallback") # This reference must be kept - var console = JavaScript.get_interface("console") - - func _init(): - var buf = JavaScript.create_object("ArrayBuffer", 10) # new ArrayBuffer(10) - print(buf) # prints [JavaScriptObject:OBJECT_ID] - var uint8arr = JavaScript.create_object("Uint8Array", buf) # new Uint8Array(buf) - uint8arr[1] = 255 - prints(uint8arr[1], uint8arr.byteLength) # prints 255 10 - console.log(uint8arr) # prints in browser console "Uint8Array(10) [ 0, 255, 0, 0, 0, 0, 0, 0, 0, 0 ]" - - # Equivalent of JavaScript: Array.from(uint8arr).forEach(myCallback) - JavaScript.get_interface("Array").from(uint8arr).forEach(_my_js_callback) - - func myCallback(args): - # Will be called with the parameters passed to the "forEach" callback - # [0, 0, [JavaScriptObject:1173]] - # [255, 1, [JavaScriptObject:1173]] - # ... - # [0, 9, [JavaScriptObject:1180]] - print(args) - [/codeblock] - [b]Note:[/b] Only available in the HTML5 platform. - - - - - - - - diff --git a/doc/classes/Joint.xml b/doc/classes/Joint.xml deleted file mode 100644 index cad0093..0000000 --- a/doc/classes/Joint.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - Base class for all 3D joints. - - - Joints are used to bind together two physics bodies. They have a solver priority and can define if the bodies of the two attached nodes should be able to collide with each other. - - - https://godotengine.org/asset-library/asset/524 - - - - - - If [code]true[/code], the two bodies of the nodes are not able to collide with each other. - - - The node attached to the first side (A) of the joint. - - - The node attached to the second side (B) of the joint. - - - The priority used to define which solver is executed first for multiple joints. The lower the value, the higher the priority. - - - - - diff --git a/doc/classes/KinematicBody.xml b/doc/classes/KinematicBody.xml deleted file mode 100644 index e28b7d4..0000000 --- a/doc/classes/KinematicBody.xml +++ /dev/null @@ -1,191 +0,0 @@ - - - - Kinematic body 3D node. - - - Kinematic bodies are special types of bodies that are meant to be user-controlled. They are not affected by physics at all; to other types of bodies, such as a character or a rigid body, these are the same as a static body. However, they have two main uses: - [b]Simulated motion:[/b] When these bodies are moved manually, either from code or from an [AnimationPlayer] (with [member AnimationPlayer.playback_process_mode] set to "physics"), the physics will automatically compute an estimate of their linear and angular velocity. This makes them very useful for moving platforms or other AnimationPlayer-controlled objects (like a door, a bridge that opens, etc). - [b]Kinematic characters:[/b] KinematicBody also has an API for moving objects (the [method move_and_collide] and [method move_and_slide] methods) while performing collision tests. This makes them really useful to implement characters that collide against a world, but don't require advanced physics. - [b]Warning:[/b] With a non-uniform scale this node will probably not function as expected. Please make sure to keep its scale uniform (i.e. the same on all axes), and change the size(s) of its collision shape(s) instead. - - - $DOCS_URL/tutorials/physics/kinematic_character_2d.md - https://godotengine.org/asset-library/asset/126 - https://godotengine.org/asset-library/asset/125 - https://godotengine.org/asset-library/asset/676 - https://godotengine.org/asset-library/asset/678 - - - - - - - Returns [code]true[/code] if the specified [code]axis[/code] is locked. See also [member move_lock_x], [member move_lock_y] and [member move_lock_z]. - - - - - - - Returns the floor's collision angle at the last collision point according to [code]up_direction[/code], which is [code]Vector3.UP[/code] by default. This value is always positive and only valid after calling [method move_and_slide] and when [method is_on_floor] returns [code]true[/code]. - - - - - - Returns the surface normal of the floor at the last collision point. Only valid after calling [method move_and_slide] or [method move_and_slide_with_snap] and when [method is_on_floor] returns [code]true[/code]. - - - - - - Returns the linear velocity of the floor at the last collision point. Only valid after calling [method move_and_slide] or [method move_and_slide_with_snap] and when [method is_on_floor] returns [code]true[/code]. - - - - - - Returns a [KinematicCollision], which contains information about the latest collision that occurred during the last call to [method move_and_slide]. - - - - - - - Returns a [KinematicCollision], which contains information about a collision that occurred during the last call to [method move_and_slide] or [method move_and_slide_with_snap]. Since the body can collide several times in a single call to [method move_and_slide], you must specify the index of the collision in the range 0 to ([method get_slide_count] - 1). - - - - - - Returns the number of times the body collided and changed direction during the last call to [method move_and_slide] or [method move_and_slide_with_snap]. - - - - - - Returns [code]true[/code] if the body collided with the ceiling on the last call of [method move_and_slide] or [method move_and_slide_with_snap]. Otherwise, returns [code]false[/code]. - - - - - - Returns [code]true[/code] if the body collided with the floor on the last call of [method move_and_slide] or [method move_and_slide_with_snap]. Otherwise, returns [code]false[/code]. - - - - - - Returns [code]true[/code] if the body collided with a wall on the last call of [method move_and_slide] or [method move_and_slide_with_snap]. Otherwise, returns [code]false[/code]. - - - - - - - - - - Moves the body along the vector [code]rel_vec[/code]. The body will stop if it collides. Returns a [KinematicCollision], which contains information about the collision when stopped, or when touching another body along the motion. - If [code]test_only[/code] is [code]true[/code], the body does not move but the would-be collision information is given. - - - - - - - - - - - - Moves the body along a vector. If the body collides with another, it will slide along the other body rather than stop immediately. If the other body is a [KinematicBody] or [RigidBody], it will also be affected by the motion of the other body. You can use this to make moving and rotating platforms, or to make nodes push other nodes. - This method should be used in [method Node._physics_process] (or in a method called by [method Node._physics_process]), as it uses the physics step's [code]delta[/code] value automatically in calculations. Otherwise, the simulation will run at an incorrect speed. - [code]linear_velocity[/code] is the velocity vector (typically meters per second). Unlike in [method move_and_collide], you should [i]not[/i] multiply it by [code]delta[/code] — the physics engine handles applying the velocity. - [code]up_direction[/code] is the up direction, used to determine what is a wall and what is a floor or a ceiling. If set to the default value of [code]Vector3(0, 0, 0)[/code], everything is considered a wall. - If [code]stop_on_slope[/code] is [code]true[/code], body will not slide on slopes when you include gravity in [code]linear_velocity[/code] and the body is standing still. - If the body collides, it will change direction a maximum of [code]max_slides[/code] times before it stops. - [code]floor_max_angle[/code] is the maximum angle (in radians) where a slope is still considered a floor (or a ceiling), rather than a wall. The default value equals 45 degrees. - If [code]infinite_inertia[/code] is [code]true[/code], body will be able to push [RigidBody] nodes, but it won't also detect any collisions with them. If [code]false[/code], it will interact with [RigidBody] nodes like with [StaticBody]. - Returns the [code]linear_velocity[/code] vector, rotated and/or scaled if a slide collision occurred. To get detailed information about collisions that occurred, use [method get_slide_collision]. - When the body touches a moving platform, the platform's velocity is automatically added to the body motion. If a collision occurs due to the platform's motion, it will always be first in the slide collisions. - - - - - - - - - - - - - Moves the body while keeping it attached to slopes. Similar to [method move_and_slide]. - As long as the [code]snap[/code] vector is in contact with the ground, the body will remain attached to the surface. This means you must disable snap in order to jump, for example. You can do this by setting [code]snap[/code] to [code](0, 0, 0)[/code] or by using [method move_and_slide] instead. - - - - - - - - Locks or unlocks the specified [code]axis[/code] depending on the value of [code]lock[/code]. See also [member move_lock_x], [member move_lock_y] and [member move_lock_z]. - - - - - - - - - Checks for collisions without moving the body. Virtually sets the node's position, scale and rotation to that of the given [Transform], then tries to move the body along the vector [code]rel_vec[/code]. Returns [code]true[/code] if a collision would stop the body from moving along the whole path. - Use [method move_and_collide] instead for detecting collision with touching bodies. - - - - - - Lock the body's X axis movement. - - - Lock the body's Y axis movement. - - - Lock the body's Z axis movement. - - - Extra margin used for collision recovery in motion functions (see [method move_and_collide], [method move_and_slide], [method move_and_slide_with_snap]). - If the body is at least this close to another body, it will consider them to be colliding and will be pushed away before performing the actual motion. - A higher value means it's more flexible for detecting collision, which helps with consistently detecting walls and floors. - A lower value forces the collision algorithm to use more exact detection, so it can be used in cases that specifically require precision, e.g at very low scale to avoid visible jittering, or for stability with a stack of kinematic bodies. - - - If [code]true[/code], the body's movement will be synchronized to the physics frame. This is useful when animating movement via [AnimationPlayer], for example on moving platforms. Do [b]not[/b] use together with [method move_and_slide] or [method move_and_collide] functions. - - - Lock the body's X axis movement. Deprecated alias for [member axis_lock_motion_x]. - - - Lock the body's Y axis movement. Deprecated alias for [member axis_lock_motion_y]. - - - Lock the body's Z axis movement. Deprecated alias for [member axis_lock_motion_z]. - - - Sets the behavior to apply when you leave a moving platform. By default, to be physically accurate, when you leave the last platform velocity is applied. See [enum MovingPlatformApplyVelocityOnLeave] constants for available behavior. - - - - - Add the last platform velocity when you leave a moving platform. - - - Add the last platform velocity when you leave a moving platform, but any downward motion is ignored. It's useful to keep full jump height even when the platform is moving down. - - - Do nothing when leaving a platform. - - - diff --git a/doc/classes/KinematicCollision.xml b/doc/classes/KinematicCollision.xml deleted file mode 100644 index 16294b5..0000000 --- a/doc/classes/KinematicCollision.xml +++ /dev/null @@ -1,61 +0,0 @@ - - - - Collision data for [KinematicBody] collisions. - - - Contains collision data for [KinematicBody] collisions. When a [KinematicBody] is moved using [method KinematicBody.move_and_collide], it stops if it detects a collision with another body. If a collision is detected, a KinematicCollision object is returned. - This object contains information about the collision, including the colliding object, the remaining motion, and the collision position. This information can be used to calculate a collision response. - - - - - - - - - The collision angle according to [code]up_direction[/code], which is [code]Vector3.UP[/code] by default. This value is always positive. - - - - - - The colliding body. - - - The colliding body's unique instance ID. See [method Object.get_instance_id]. - - - The colliding body's metadata. See [Object]. - - - The colliding body's [RID] used by the [PhysicsServer]. - - - The colliding body's shape. - - - The colliding shape's index. See [CollisionObject]. - - - The colliding object's velocity. - - - The moving object's colliding shape. - - - The colliding body's shape's normal at the point of collision. - - - The point of collision, in global coordinates. - - - The moving object's remaining movement vector. - - - The distance the moving object traveled before collision. - - - - - diff --git a/doc/classes/Label3D.xml b/doc/classes/Label3D.xml deleted file mode 100644 index adebd98..0000000 --- a/doc/classes/Label3D.xml +++ /dev/null @@ -1,156 +0,0 @@ - - - - Displays plain text in a 3D world. - - - Label3D displays plain text in a 3D world. It gives you control over the horizontal and vertical alignment. - - - - - - - - Returns a [TriangleMesh] with the label's vertices following its current configuration (such as its [member pixel_size]). - - - - - - - Returns the value of the specified flag. - - - - - - - - If [code]true[/code], the specified flag will be enabled. See [enum Label3D.DrawFlags] for a list of flags. - - - - - - The alpha cutting mode to use for the sprite. See [enum AlphaCutMode] for possible values. - - - Threshold at which the alpha scissor will discard values. - - - If [code]true[/code], wraps the text to the [member width]. - - - The billboard mode to use for the label. See [enum SpatialMaterial.BillboardMode] for possible values. - - - If [code]true[/code], text can be seen from the back as well, if [code]false[/code], it is invisible when looking at it from behind. - - - If [code]true[/code], the label is rendered at the same size regardless of distance. - - - [Font] used for the [Label3D]'s text. - - - Controls the text's horizontal alignment. Supports left, center, right. Set it to one of the [enum Align] constants. - - - Vertical space between lines in multiline [Label3D]. - - - Text [Color] of the [Label3D]. - - - If [code]true[/code], depth testing is disabled and the object will be drawn in render order. - - - The text drawing offset (in pixels). - - - The tint of [Font]'s outline. - - - Sets the render priority for the text outline. Higher priority objects will be sorted in front of lower priority objects. - [b]Node:[/b] This only applies if [member alpha_cut] is set to [constant ALPHA_CUT_DISABLED] (default value). - [b]Note:[/b] This only applies to sorting of transparent objects. This will not impact how transparent objects are sorted relative to opaque objects. This is because opaque objects are not sorted, while transparent objects are sorted from back to front (subject to priority). - - - The size of one pixel's width on the label to scale it in 3D. - - - Sets the render priority for the text. Higher priority objects will be sorted in front of lower priority objects. - [b]Node:[/b] This only applies if [member alpha_cut] is set to [constant ALPHA_CUT_DISABLED] (default value). - [b]Note:[/b] This only applies to sorting of transparent objects. This will not impact how transparent objects are sorted relative to opaque objects. This is because opaque objects are not sorted, while transparent objects are sorted from back to front (subject to priority). - - - If [code]true[/code], the [Light] in the [Environment3D] has effects on the label. - - - The text to display on screen. - - - If [code]true[/code], all the text displays as UPPERCASE. - - - Controls the text's vertical alignment. Supports top, center, bottom. Set it to one of the [enum VAlign] constants. - - - Text width (in pixels), used for autowrap and fill alignment. - - - - - If set, lights in the environment affect the label. - - - If set, text can be seen from the back as well. If not, the texture is invisible when looking at it from behind. - - - Disables the depth test, so this object is drawn on top of all others. However, objects drawn after it in the draw order may cover it. - - - Label is scaled by depth so that it always appears the same size on screen. - - - Represents the size of the [enum DrawFlags] enum. - - - This mode performs standard alpha blending. It can display translucent areas, but transparency sorting issues may be visible when multiple transparent materials are overlapping. - - - This mode only allows fully transparent or fully opaque pixels. This mode is also known as [i]alpha testing[/i] or [i]1-bit transparency[/i]. - [b]Note:[/b] This mode might have issues with anti-aliased fonts and outlines, try adjusting [member alpha_scissor_threshold] or using SDF font. - [b]Note:[/b] When using text with overlapping glyphs (e.g., cursive scripts), this mode might have transparency sorting issues between the main text and the outline. - - - This mode draws fully opaque pixels in the depth prepass. This is slower than [constant ALPHA_CUT_DISABLED] or [constant ALPHA_CUT_DISCARD], but it allows displaying translucent areas and smooth edges while using proper sorting. - [b]Note:[/b] When using text with overlapping glyphs (e.g., cursive scripts), this mode might have transparency sorting issues between the main text and the outline. - - - Align rows to the left (default). - - - Align rows centered. - - - Align rows to the right. - - - Expand row whitespaces to fit the width. - - - Align the whole text to the top. - - - Align the whole text to the center. - - - Align the whole text to the bottom. - - - Align the whole text by spreading the rows. - - - diff --git a/doc/classes/Light.xml b/doc/classes/Light.xml deleted file mode 100644 index 3faa338..0000000 --- a/doc/classes/Light.xml +++ /dev/null @@ -1,126 +0,0 @@ - - - - Provides a base class for different kinds of light nodes. - - - Light is the [i]abstract[/i] base class for light nodes. As it can't be instanced, it shouldn't be used directly. Other types of light nodes inherit from it. Light contains the common variables and parameters used for lighting. - - - $DOCS_URL/tutorials/3d/lights_and_shadows.md - https://godotengine.org/asset-library/asset/678 - - - - - - - Returns the value of the specified [enum Light.Param] parameter. - - - - - - - - Sets the value of the specified [enum Light.Param] parameter. - - - - - - If [code]true[/code], the light only appears in the editor and will not be visible at runtime. - - - The light's color. An [i]overbright[/i] color can be used to achieve a result equivalent to increasing the light's [member light_energy]. - - - The light will affect objects in the selected layers. - - - The light's strength multiplier (this is not a physical unit). For [OmniLight] and [SpotLight], changing this value will only change the light color's intensity, not the light's radius. - - - Secondary multiplier used with indirect light (light bounces). This works on both [BakedLightmap] and [GIProbe]. - - - If [code]true[/code], the light's effect is reversed, darkening areas and casting bright shadows. - - - The size of the light in Godot units. Only considered in baked lightmaps and only if [member light_bake_mode] is set to [constant BAKE_ALL]. Increasing this value will make the shadows appear blurrier. This can be used to simulate area lights to an extent. - [b]Note:[/b] [member light_size] is not affected by [member Spatial.scale] (the light's scale or its parent's scale). - - - The intensity of the specular blob in objects affected by the light. At [code]0[/code], the light becomes a pure diffuse light. When not baking emission, this can be used to avoid unrealistic reflections when placing lights above an emissive surface. - - - Used to adjust shadow appearance. Too small a value results in self-shadowing ("shadow acne"), while too large a value causes shadows to separate from casters ("peter-panning"). Adjust as needed. - - - The color of shadows cast by this light. - - - Attempts to reduce [member shadow_bias] gap by rendering screen-space contact shadows. This has a performance impact, especially at higher values. - [b]Note:[/b] Contact shadows can look broken, so leaving this property to [code]0.0[/code] is recommended. - - - If [code]true[/code], the light will cast shadows. - - - If [code]true[/code], reverses the backface culling of the mesh. This can be useful when you have a flat mesh that has a light behind it. If you need to cast a shadow on both sides of the mesh, set the mesh to use double-sided shadows with [constant GeometryInstance.SHADOW_CASTING_SETTING_DOUBLE_SIDED]. - - - - - Constant for accessing [member light_energy]. - - - Constant for accessing [member light_indirect_energy]. - - - Constant for accessing [member light_size]. - - - Constant for accessing [member light_specular]. - - - Constant for accessing [member OmniLight.omni_range] or [member SpotLight.spot_range]. - - - Constant for accessing [member OmniLight.omni_attenuation] or [member SpotLight.spot_attenuation]. - - - Constant for accessing [member SpotLight.spot_angle]. - - - Constant for accessing [member SpotLight.spot_angle_attenuation]. - - - Constant for accessing [member shadow_contact]. - - - Constant for accessing [member DirectionalLight.directional_shadow_max_distance]. - - - Constant for accessing [member DirectionalLight.directional_shadow_split_1]. - - - Constant for accessing [member DirectionalLight.directional_shadow_split_2]. - - - Constant for accessing [member DirectionalLight.directional_shadow_split_3]. - - - Constant for accessing [member DirectionalLight.directional_shadow_normal_bias]. - - - Constant for accessing [member shadow_bias]. - - - Constant for accessing [member DirectionalLight.directional_shadow_bias_split_scale]. - - - Represents the size of the [enum Param] enum. - - - diff --git a/doc/classes/Light2D.xml b/doc/classes/Light2D.xml deleted file mode 100644 index 1789faf..0000000 --- a/doc/classes/Light2D.xml +++ /dev/null @@ -1,112 +0,0 @@ - - - - Casts light in a 2D environment. - - - Casts light in a 2D environment. Light is defined by a (usually grayscale) texture, a color, an energy value, a mode (see constants), and various other parameters (range and shadows-related). - [b]Note:[/b] Light2D can also be used as a mask. - - - $DOCS_URL/tutorials/2d/2d_lights_and_shadows.md - - - - - - The Light2D's [Color]. - - - If [code]true[/code], Light2D will only appear when editing the scene. - - - If [code]true[/code], Light2D will emit light. - - - The Light2D's energy value. The larger the value, the stronger the light. - - - The Light2D's mode. See [enum Mode] constants for values. - - - The offset of the Light2D's [code]texture[/code]. - - - The height of the Light2D. Used with 2D normal mapping. - - - The layer mask. Only objects with a matching mask will be affected by the Light2D. - - - Maximum layer value of objects that are affected by the Light2D. - - - Minimum layer value of objects that are affected by the Light2D. - - - Maximum [code]z[/code] value of objects that are affected by the Light2D. - - - Minimum [code]z[/code] value of objects that are affected by the Light2D. - - - Shadow buffer size. - - - [Color] of shadows cast by the Light2D. - - - If [code]true[/code], the Light2D will cast shadows. - - - Shadow filter type. See [enum ShadowFilter] for possible values. - - - Smoothing value for shadows. - - - Smooth shadow gradient length. - - - The shadow mask. Used with [LightOccluder2D] to cast shadows. Only occluders with a matching light mask will cast shadows. - - - [Texture] used for the Light2D's appearance. - - - The [code]texture[/code]'s scale factor. - - - - - Adds the value of pixels corresponding to the Light2D to the values of pixels under it. This is the common behavior of a light. - - - Subtracts the value of pixels corresponding to the Light2D to the values of pixels under it, resulting in inversed light effect. - - - Mix the value of pixels corresponding to the Light2D to the values of pixels under it by linear interpolation. - - - The light texture of the Light2D is used as a mask, hiding or revealing parts of the screen underneath depending on the value of each pixel of the light (mask) texture. - - - No filter applies to the shadow map. See [member shadow_filter]. - - - Percentage closer filtering (3 samples) applies to the shadow map. See [member shadow_filter]. - - - Percentage closer filtering (5 samples) applies to the shadow map. See [member shadow_filter]. - - - Percentage closer filtering (7 samples) applies to the shadow map. See [member shadow_filter]. - - - Percentage closer filtering (9 samples) applies to the shadow map. See [member shadow_filter]. - - - Percentage closer filtering (13 samples) applies to the shadow map. See [member shadow_filter]. - - - diff --git a/doc/classes/LightOccluder2D.xml b/doc/classes/LightOccluder2D.xml deleted file mode 100644 index 62689a6..0000000 --- a/doc/classes/LightOccluder2D.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - Occludes light cast by a Light2D, casting shadows. - - - Occludes light cast by a Light2D, casting shadows. The LightOccluder2D must be provided with an [OccluderPolygon2D] in order for the shadow to be computed. - - - $DOCS_URL/tutorials/2d/2d_lights_and_shadows.md - - - - - - The LightOccluder2D's light mask. The LightOccluder2D will cast shadows only from Light2D(s) that have the same light mask(s). - - - The [OccluderPolygon2D] used to compute the shadow. - - - - - diff --git a/doc/classes/Listener.xml b/doc/classes/Listener.xml deleted file mode 100644 index 7db0393..0000000 --- a/doc/classes/Listener.xml +++ /dev/null @@ -1,40 +0,0 @@ - - - - Overrides the location sounds are heard from. - - - Once added to the scene tree and enabled using [method make_current], this node will override the location sounds are heard from. This can be used to listen from a location different from the [Camera]. - - - - - - - - Disables the listener to use the current camera's listener instead. - - - - - - Returns the listener's global orthonormalized [Transform]. - - - - - - Returns [code]true[/code] if the listener was made current using [method make_current], [code]false[/code] otherwise. - [b]Note:[/b] There may be more than one Listener marked as "current" in the scene tree, but only the one that was made current last will be used. - - - - - - Enables the listener. This will override the current camera's listener. - - - - - - diff --git a/doc/classes/Mesh.xml b/doc/classes/Mesh.xml index b6e61d7..81c957e 100644 --- a/doc/classes/Mesh.xml +++ b/doc/classes/Mesh.xml @@ -13,16 +13,6 @@ https://godotengine.org/asset-library/asset/678 - - - - - - Calculate a [ConvexPolygonShape] from the mesh. - If [code]clean[/code] is [code]true[/code] (default), duplicate and interior vertices are removed automatically. You can set it to [code]false[/code] to make the process faster if not needed. - If [code]simplify[/code] is [code]true[/code], the geometry can be further simplified to reduce the amount of vertices. Disabled by default. - - @@ -31,12 +21,6 @@ [b]Note:[/b] This method typically returns the vertices in reverse order (e.g. clockwise to counterclockwise). - - - - Calculate a [ConcavePolygonShape] from the mesh. - - @@ -138,56 +122,38 @@ Mesh array contains second UV. - - Mesh array contains bones. - - - Mesh array contains bone weights. - - + Mesh array uses indices. - + Used internally to calculate other [code]ARRAY_COMPRESS_*[/code] enum values. Do not use. - + Flag used to mark a compressed (half float) vertex array. - + Flag used to mark a compressed (half float) normal array. - + Flag used to mark a compressed (half float) tangent array. - + Flag used to mark a compressed (half float) color array. [b]Note:[/b] If this flag is enabled, vertex colors will be stored as 8-bit unsigned integers. This will clamp overbright colors to [code]Color(1, 1, 1, 1)[/code] and reduce colors' precision. - + Flag used to mark a compressed (half float) UV coordinates array. - + Flag used to mark a compressed (half float) UV coordinates array for the second UV coordinates. - - Flag used to mark a compressed bone array. - - - Flag used to mark a compressed (half float) weight array. - - + Flag used to mark a compressed index array. - + Flag used to mark that the array contains 2D vertices. - - Flag used to mark that the array uses 16-bit bones instead of 8-bit. - - - Flag used to mark that the array uses an octahedral representation of normal and tangent vectors rather than cartesian. - - + Used to set flags [constant ARRAY_COMPRESS_VERTEX], [constant ARRAY_COMPRESS_NORMAL], [constant ARRAY_COMPRESS_TANGENT], [constant ARRAY_COMPRESS_COLOR], [constant ARRAY_COMPRESS_TEX_UV], [constant ARRAY_COMPRESS_TEX_UV2], [constant ARRAY_COMPRESS_WEIGHTS], and [constant ARRAY_FLAG_USE_OCTAHEDRAL_COMPRESSION] quickly. [b]Note:[/b] Since this flag enables [constant ARRAY_COMPRESS_COLOR], vertex colors will be stored as 8-bit unsigned integers. This will clamp overbright colors to [code]Color(1, 1, 1, 1)[/code] and reduce colors' precision. @@ -209,16 +175,10 @@ Array of second set of UV coordinates. - - Array of bone data. - - - Array of weights. - - + Array of indices. - + Represents the size of the [enum ArrayType] enum. diff --git a/doc/classes/MeshDataInstance2D.xml b/doc/classes/MeshDataInstance2D.xml deleted file mode 100644 index ce8e7d6..0000000 --- a/doc/classes/MeshDataInstance2D.xml +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/doc/classes/MeshDataTool.xml b/doc/classes/MeshDataTool.xml index 4f63c04..0a2b645 100644 --- a/doc/classes/MeshDataTool.xml +++ b/doc/classes/MeshDataTool.xml @@ -139,13 +139,6 @@ Returns the vertex at given index. - - - - - Returns the bones of the given vertex. - - @@ -208,13 +201,6 @@ Returns the UV2 of the given vertex. - - - - - Returns bone weights of the given vertex. - - @@ -246,14 +232,6 @@ Sets the position of the given vertex. - - - - - - Sets the bones of the given vertex. - - @@ -302,14 +280,6 @@ Sets the UV2 of the given vertex. - - - - - - Sets the bone weights of the given vertex. - - diff --git a/doc/classes/MeshInstance.xml b/doc/classes/MeshInstance.xml deleted file mode 100644 index 0db39bd..0000000 --- a/doc/classes/MeshInstance.xml +++ /dev/null @@ -1,113 +0,0 @@ - - - - Node that instances meshes into a scenario. - - - MeshInstance is a node that takes a [Mesh] resource and adds it to the current scenario by creating an instance of it. This is the class most often used to get 3D geometry rendered and can be used to instance a single [Mesh] in many places. This allows to reuse geometry and save on resources. When a [Mesh] has to be instanced more than thousands of times at close proximity, consider using a [MultiMesh] in a [MultiMeshInstance] instead. - - - https://godotengine.org/asset-library/asset/123 - https://godotengine.org/asset-library/asset/126 - https://godotengine.org/asset-library/asset/125 - https://godotengine.org/asset-library/asset/678 - - - - - - - - This helper creates a [StaticBody] child node with a [ConvexPolygonShape] collision shape calculated from the mesh geometry. It's mainly used for testing. - If [code]clean[/code] is [code]true[/code] (default), duplicate and interior vertices are removed automatically. You can set it to [code]false[/code] to make the process faster if not needed. - If [code]simplify[/code] is [code]true[/code], the geometry can be further simplified to reduce the amount of vertices. Disabled by default. - - - - - - This helper creates a [MeshInstance] child node with gizmos at every vertex calculated from the mesh geometry. It's mainly used for testing. - - - - - - This helper creates a [StaticBody] child node with multiple [ConvexPolygonShape] collision shapes calculated from the mesh geometry via convex decomposition. It's mainly used for testing. - - - - - - This helper creates a [StaticBody] child node with a [ConcavePolygonShape] collision shape calculated from the mesh geometry. It's mainly used for testing. - - - - - - - Returns the [Material] that will be used by the [Mesh] when drawing. This can return the [member GeometryInstance.material_override], the surface override [Material] defined in this [MeshInstance], or the surface [Material] defined in the [Mesh]. For example, if [member GeometryInstance.material_override] is used, all surfaces will return the override material. - - - - - - - Returns the override [Material] for a surface of the [Mesh] resource. - [b]Note:[/b] This function only returns [i]override[/i] materials associated with this [MeshInstance]. Consider using [method get_active_material] or [method Mesh.surface_get_material] to get materials associated with the [Mesh] resource. - - - - - - Returns the number of surface override materials. - - - - - - - Returns [code]true[/code] if this [MeshInstance] can be merged with the specified [code]other_mesh_instance[/code], using the [method MeshInstance.merge_meshes] function. - In order to be mergeable, properties of the [MeshInstance] must match, and each surface must match, in terms of material, attributes and vertex format. - - - - - - - - - This function can merge together the data from several source [MeshInstance]s into a single destination [MeshInstance] (the MeshInstance the function is called from). This is primarily useful for improving performance by reducing the number of drawcalls and [Node]s. - Merging should only be attempted for simple meshes that do not contain animation. - The final vertices can either be returned in global space, or in local space relative to the destination [MeshInstance] global transform (the destination Node must be inside the [SceneTree] for local space to work). - The function will make a final check for compatibility between the [MeshInstance]s by default, this should always be used unless you have previously checked for compatibility using [method MeshInstance.is_mergeable_with]. If the compatibility check is omitted and the meshes are merged, you may see rendering errors. - [b]Note:[/b] The requirements for similarity between meshes are quite stringent. They can be checked using the [method MeshInstance.is_mergeable_with] function prior to calling [method MeshInstance.merge_meshes]. - Also note that any initial data in the destination [MeshInstance] data will be discarded. - - - - - - - - Sets the override [Material] for the specified surface of the [Mesh] resource. This material is associated with this [MeshInstance] rather than with the [Mesh] resource. - - - - - - The [Mesh] resource for the instance. - - - [NodePath] to the [Skeleton] associated with the instance. - - - Sets the skin to be used by this instance. - - - If [code]true[/code], normals are transformed when software skinning is used. Set to [code]false[/code] when normals are not needed for better performance. - See [member ProjectSettings.rendering/quality/skinning/software_skinning_fallback] for details about how software skinning is enabled. - - - - - diff --git a/doc/classes/MultiMeshInstance.xml b/doc/classes/MultiMeshInstance.xml deleted file mode 100644 index c900439..0000000 --- a/doc/classes/MultiMeshInstance.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - Node that instances a [MultiMesh]. - - - [MultiMeshInstance] is a specialized node to instance [GeometryInstance]s based on a [MultiMesh] resource. - This is useful to optimize the rendering of a high amount of instances of a given mesh (for example trees in a forest or grass strands). - - - $DOCS_URL/tutorials/performance/vertex_animation/animating_thousands_of_fish.md - $DOCS_URL/tutorials/3d/using_multi_mesh_instance.md - $DOCS_URL/tutorials/performance/using_multimesh.md - - - - - - The [MultiMesh] resource that will be used and shared among all instances of the [MultiMeshInstance]. - - - - - diff --git a/doc/classes/Navigation.xml b/doc/classes/Navigation.xml deleted file mode 100644 index 6c61902..0000000 --- a/doc/classes/Navigation.xml +++ /dev/null @@ -1,86 +0,0 @@ - - - - Mesh-based navigation and pathfinding node. - - - Provides navigation and pathfinding within a collection of [NavigationMesh]es. By default, these will be automatically collected from child [NavigationMeshInstance] nodes. In addition to basic pathfinding, this class also assists with aligning navigation agents with the meshes they are navigating on. - - - https://github.com/Relintai/pandemonium_demo_projects/tree/master/3d/navmesh - - - - - - - Returns the navigation point closest to the point given. Points are in local coordinate space. - - - - - - - Returns the surface normal at the navigation point closest to the point given. Useful for rotating a navigation agent according to the navigation mesh it moves on. - - - - - - - Returns the owner of the [NavigationMesh] which contains the navigation point closest to the point given. This is usually a [NavigationMeshInstance]. - - - - - - - - - Returns the navigation point closest to the given line segment. When enabling [code]use_collision[/code], only considers intersection points between segment and navigation meshes. If multiple intersection points are found, the one closest to the segment start point is returned. - - - - - - Returns the [RID] of the navigation map on the [NavigationServer]. - - - - - - - - - Returns the path between two given points. Points are in local coordinate space. If [code]optimize[/code] is [code]true[/code] (the default), the agent properties associated with each [NavigationMesh] (radius, height, etc.) are considered in the path calculation, otherwise they are ignored. - - - - - - The cell height to use for fields. - - - The XZ plane cell size to use for fields. - - - This value is used to detect the near edges to connect compatible regions. - - - A bitfield determining all navigation map layers the navigation can use on a [method Navigation.get_simple_path] path query. - - - Defines which direction is up. By default, this is [code](0, 1, 0)[/code], which is the world's "up" direction. - - - - - - - Emitted when a navigation map is updated, when a region moves or is modified. - - - - - - diff --git a/doc/classes/Navigation2D.xml b/doc/classes/Navigation2D.xml deleted file mode 100644 index 2ab7fd0..0000000 --- a/doc/classes/Navigation2D.xml +++ /dev/null @@ -1,56 +0,0 @@ - - - - 2D navigation and pathfinding node. - - - Navigation2D provides navigation and pathfinding within a 2D area, specified as a collection of [NavigationPolygon] resources. By default, these are automatically collected from child [NavigationPolygonInstance] nodes. - - - https://github.com/Relintai/pandemonium_demo_projects/tree/master/2d/navigation - - - - - - - Returns the navigation point closest to the point given. Points are in local coordinate space. - - - - - - - Returns the owner of the [NavigationPolygon] which contains the navigation point closest to the point given. This is usually a [NavigationPolygonInstance]. - - - - - - Returns the object's [RID]. - - - - - - - - - Returns the path between two given points. Points are in local coordinate space. If [code]optimize[/code] is [code]true[/code] (the default), the path is smoothed by merging path segments where possible. - - - - - - The XY plane cell size to use for fields. - - - This value is used to detect the near edges to connect compatible regions. - - - A bitfield determining all navigation map layers the navigation can use on a [method Navigation2D.get_simple_path] path query. - - - - - diff --git a/doc/classes/Navigation2DServer.xml b/doc/classes/Navigation2DServer.xml deleted file mode 100644 index c372d86..0000000 --- a/doc/classes/Navigation2DServer.xml +++ /dev/null @@ -1,766 +0,0 @@ - - - - Server interface for low-level 2D navigation access. - - - Navigation2DServer is the server responsible for all 2D navigation. It handles several objects, namely maps, regions and agents. - Maps are made up of regions, which are made of navigation polygons. Together, they define the navigable areas in the 2D world. - [b]Note:[/b] Most NavigationServer changes take effect after the next physics frame and not immediately. This includes all changes made to maps, regions or agents by navigation related Nodes in the SceneTree or made through scripts. - For two regions to be connected to each other, they must share a similar edge. An edge is considered connected to another if both of its two vertices are at a distance less than navigation map [code]edge_connection_margin[/code] to the respective other edge's vertex. - You may assign navigation layers to regions with [method Navigation2DServer.region_set_navigation_layers], which then can be checked upon when requesting a path with [method Navigation2DServer.map_get_path]. This allows allowing or forbidding some areas to 2D objects. - To use the collision avoidance system, you may use agents. You can set an agent's target velocity, then the servers will emit a callback with a modified velocity. - [b]Note:[/b] The collision avoidance system ignores regions. Using the modified velocity as-is might lead to pushing and agent outside of a navigable area. This is a limitation of the collision avoidance system, any more complex situation may require the use of the physics engine. - This server keeps tracks of any call and executes them during the sync phase. This means that you can request any change to the map, using any thread, without worrying. - - - https://github.com/Relintai/pandemonium_demo_projects/tree/master/2d/navigation - $DOCS_URL/tutorials/navigation/navigation_using_navigationservers.md - - - - - - Creates the agent. - - - - - - - Return [code]true[/code] if the specified [param agent] uses avoidance. - - - - - - - Returns the navigation map [RID] the requested [code]agent[/code] is currently assigned to. - - - - - - - Returns [code]true[/code] if the specified [param agent] is paused. - - - - - - - Returns [code]true[/code] if the map got changed the previous frame. - - - - - - - - - - Sets the callback [Callable] that gets called after each avoidance processing step for the [param agent]. The calculated [code]safe_velocity[/code] will be dispatched with a signal to the object just before the physics calculations. - [b]Note:[/b] Created callbacks are always processed independently of the SceneTree state as long as the agent is on a navigation map and not freed. To disable the dispatch of a callback from an agent use [method agent_set_avoidance_callback] again with an empty [Callable]. - - - - - - - - If [param enabled] is [code]true[/code] the specified [param agent] uses avoidance. - - - - - - - - Set the agent's [code]avoidance_layers[/code] bitmask. - - - - - - - - Set the agent's [code]avoidance_mask[/code] bitmask. - - - - - - - - Set the agent's [code]avoidance_priority[/code] with a [param priority] between 0.0 (lowest priority) to 1.0 (highest priority). - The specified [param agent] does not adjust the velocity for other agents that would match the [code]avoidance_mask[/code] but have a lower [code] avoidance_priority[/code]. This in turn makes the other agents with lower priority adjust their velocities even more to avoid collision with this agent. - - - - - - - - Puts the agent in the map. - - - - - - - - Sets the maximum number of other agents the agent takes into account in the navigation. The larger this number, the longer the running time of the simulation. If the number is too low, the simulation will not be safe. - - - - - - - - Sets the maximum speed of the agent. Must be positive. - - - - - - - - Sets the maximum distance to other agents this agent takes into account in the navigation. The larger this number, the longer the running time of the simulation. If the number is too low, the simulation will not be safe. - - - - - - - - If [param paused] is true the specified [param agent] will not be processed, e.g. calculate avoidance velocities or receive avoidance callbacks. - - - - - - - - Sets the position of the agent in world space. - - - - - - - - Sets the radius of the agent. - - - - - - - - The minimal amount of time for which the agent's velocities that are computed by the simulation are safe with respect to other agents. The larger this number, the sooner this agent will respond to the presence of other agents, but the less freedom this agent has in choosing its velocities. A too high value will slow down agents movement considerably. Must be positive. - - - - - - - - The minimal amount of time for which the agent's velocities that are computed by the simulation are safe with respect to static avoidance obstacles. The larger this number, the sooner this agent will respond to the presence of static avoidance obstacles, but the less freedom this agent has in choosing its velocities. A too high value will slow down agents movement considerably. Must be positive. - - - - - - - - Sets [param velocity] as the new wanted velocity for the specified [param agent]. The avoidance simulation will try to fulfil this velocity if possible but will modify it to avoid collision with other agent's and obstacles. When an agent is teleported to a new position far away use [method agent_set_velocity_forced] instead to reset the internal velocity state. - - - - - - - - Replaces the internal velocity in the collision avoidance simulation with [param velocity] for the specified [param agent]. When an agent is teleported to a new position far away this function should be used in the same frame. If called frequently this function can get agents stuck. - - - - - - - Destroys the given RID. - - - - - - Returns [code]true[/code] when the NavigationServer has debug enabled. - - - - - - Returns all created navigation map [RID]s on the NavigationServer. This returns both 2D and 3D created navigation maps as there is technically no distinction between them. - - - - - - Create a new link between two positions on a map. - - - - - - - Returns [code]true[/code] if the specified [param link] is enabled. - - - - - - - Returns the ending position of this [code]link[/code]. - - - - - - - Returns the [code]enter_cost[/code] of this [code]link[/code]. - - - - - - - Returns the navigation map [RID] the requested [code]link[/code] is currently assigned to. - - - - - - - Returns the navigation layers for this [code]link[/code]. - - - - - - - Returns the [code]ObjectID[/code] of the object which manages this link. - - - - - - - Returns the starting position of this [code]link[/code]. - - - - - - - Returns the [code]travel_cost[/code] of this [code]link[/code]. - - - - - - - Returns whether this [code]link[/code] can be travelled in both directions. - - - - - - - - Sets whether this [code]link[/code] can be travelled in both directions. - - - - - - - - If [param enabled] is [code]true[/code] the specified [param link] will contribute to its current navigation map. - - - - - - - - Sets the exit position for the [code]link[/code]. - - - - - - - - Sets the [code]enter_cost[/code] for this [code]link[/code]. - - - - - - - - Sets the navigation map [RID] for the link. - - - - - - - - Set the links's navigation layers. This allows selecting links from a path request (when using [method NavigationServer2D.map_get_path]). - - - - - - - - Set the [code]ObjectID[/code] of the object which manages this link. - - - - - - - - Sets the entry position for this [code]link[/code]. - - - - - - - - Sets the [code]travel_cost[/code] for this [code]link[/code]. - - - - - - Create a new map. - - - - - - - This function immediately forces synchronization of the specified navigation [code]map[/code] [RID]. By default navigation maps are only synchronized at the end of each physics frame. This function can be used to immediately (re)calculate all the navigation meshes and region connections of the navigation map. This makes it possible to query a navigation path for a changed map immediately and in the same frame (multiple times if needed). - Due to technical restrictions the current NavigationServer command queue will be flushed. This means all already queued update commands for this physics frame will be executed, even those intended for other maps, regions and agents not part of the specified map. The expensive computation of the navigation meshes and region connections of a map will only be done for the specified map. Other maps will receive the normal synchronization at the end of the physics frame. Should the specified map receive changes after the forced update it will update again as well when the other maps receive their update. - Avoidance processing and dispatch of the [code]safe_velocity[/code] signals is untouched by this function and continues to happen for all maps and agents at the end of the physics frame. - [b]Note:[/b] With great power comes great responsibility. This function should only be used by users that really know what they are doing and have a good reason for it. Forcing an immediate update of a navigation map requires locking the NavigationServer and flushing the entire NavigationServer command queue. Not only can this severely impact the performance of a game but it can also introduce bugs if used inappropriately without much foresight. - - - - - - - Returns all navigation agents [RID]s that are currently assigned to the requested navigation [code]map[/code]. - - - - - - - Returns the map cell size used to rasterize the navigation mesh vertices. - - - - - - - - Returns the point closest to the provided [code]to_point[/code] on the navigation mesh surface. - - - - - - - - Returns the owner region RID for the point returned by [method map_get_closest_point]. - - - - - - - Returns the edge connection margin of the map. The edge connection margin is a distance used to connect two regions. - - - - - - - Returns the link connection radius of the map. This distance is the maximum range any link will search for navigation mesh polygons to connect to. - - - - - - - Returns all navigation link [RID]s that are currently assigned to the requested navigation [code]map[/code]. - - - - - - - Returns all navigation obstacle [RID]s that are currently assigned to the requested navigation [code]map[/code]. - - - - - - - - - - - Returns the navigation path to reach the destination from the origin. [code]navigation_layers[/code] is a bitmask of all region layers that are allowed to be in the path. - - - - - - - Returns all navigation regions [RID]s that are currently assigned to the requested navigation [code]map[/code]. - - - - - - - Returns whether the navigation [param map] allows navigation regions to use edge connections to connect with other navigation regions within proximity of the navigation map edge connection margin. - - - - - - - Returns [code]true[/code] if the map is active. - - - - - - - - Sets the map active. - - - - - - - - Sets the map cell size used to rasterize the navigation mesh vertices. Must match with the cell size of the used navigation meshes. - - - - - - - - Set the map edge connection margin used to weld the compatible region edges. - - - - - - - - Set the map's link connection radius used to connect links to navigation polygons. - - - - - - - - Set the navigation [param map] edge connection use. If [param enabled] the navigation map allows navigation regions to use edge connections to connect with other navigation regions within proximity of the navigation map edge connection margin. - - - - - - Creates a new navigation obstacle. - - - - - - - Returns [code]true[/code] if the provided [param obstacle] has avoidance enabled. - - - - - - - Returns the navigation map [RID] the requested [param obstacle] is currently assigned to. - - - - - - - Returns [code]true[/code] if the specified [param obstacle] is paused. - - - - - - - - If [param enabled] the provided [param obstacle] affects avoidance using agents. - - - - - - - - Set the obstacles's [code]avoidance_layers[/code] bitmask. - - - - - - - - Sets the navigation map [RID] for the obstacle. - - - - - - - - If [param paused] is true the specified [param obstacle] will not be processed, e.g. affect avoidance velocities. - - - - - - - - Sets the position of the obstacle in world space. - - - - - - - - Sets the radius of the dynamic obstacle. - - - - - - - - Sets [param velocity] of the dynamic [param obstacle]. Allows other agents to better predict the movement of the dynamic obstacle. Only works in combination with the radius of the obstacle. - - - - - - - - Sets the outline vertices for the obstacle. If the vertices are winded in clockwise order agents will be pushed in by the obstacle, else they will be pushed out. - - - - - - Creates a new region. - - - - - - - - Returns the ending point of a connection door. [code]connection[/code] is an index between 0 and the return value of [method region_get_connections_count]. - - - - - - - - Returns the starting point of a connection door. [code]connection[/code] is an index between 0 and the return value of [method region_get_connections_count]. - - - - - - - Returns how many connections this [code]region[/code] has with other regions in the map. - - - - - - - Returns [code]true[/code] if the specified [param region] is enabled. - - - - - - - Returns the [code]enter_cost[/code] of this [code]region[/code]. - - - - - - - Returns the navigation map [RID] the requested [code]region[/code] is currently assigned to. - - - - - - - Returns the region's navigation layers. - - - - - - - Returns the [code]ObjectID[/code] of the object which manages this region. - - - - - - - Returns the [code]travel_cost[/code] of this [code]region[/code]. - - - - - - - Returns whether the navigation [param region] is set to use edge connections to connect with other navigation regions within proximity of the navigation map edge connection margin. - - - - - - - - Returns [code]true[/code] if the provided [code]point[/code] in world space is currently owned by the provided navigation [code]region[/code]. Owned in this context means that one of the region's navigation mesh polygon faces has a possible position at the closest distance to this point compared to all other navigation meshes from other navigation regions that are also registered on the navigation map of the provided region. - If multiple navigation meshes have positions at equal distance the navigation region whose polygons are processed first wins the ownership. Polygons are processed in the same order that navigation regions were registered on the NavigationServer. - [b]Note:[/b] If navigation meshes from different navigation regions overlap (which should be avoided in general) the result might not be what is expected. - - - - - - - - If [param enabled] is [code]true[/code] the specified [param region] will contribute to its current navigation map. - - - - - - - - Sets the [code]enter_cost[/code] for this [code]region[/code]. - - - - - - - - Sets the map for the region. - - - - - - - - Set the region's navigation layers. This allows selecting regions from a path request (when using [method Navigation2DServer.map_get_path]). - - - - - - - - Sets the navigation mesh for the region. - - - - - - - - Set the [code]ObjectID[/code] of the object which manages this region. - - - - - - - - Sets the global transformation for the region. - - - - - - - - Sets the [code]travel_cost[/code] for this [code]region[/code]. - - - - - - - - If [param enabled] the navigation [param region] will use edge connections to connect with other navigation regions within proximity of the navigation map edge connection margin. - - - - - - - - - - - - - - Emitted when a navigation map is updated, when a region moves or is modified. - - - - - Emitted when navigation debug settings are changed. Only available in debug builds. - - - - - - diff --git a/doc/classes/NavigationAgent.xml b/doc/classes/NavigationAgent.xml deleted file mode 100644 index 988347b..0000000 --- a/doc/classes/NavigationAgent.xml +++ /dev/null @@ -1,288 +0,0 @@ - - - - 3D agent used in navigation for collision avoidance. - - - 3D agent that is used in navigation to reach a position while avoiding static and dynamic obstacles. The dynamic obstacles are avoided using RVO (Reciprocal Velocity Obstacles) collision avoidance. The agent needs navigation data to work correctly. By default this node will register to the default [World3D] navigation map. If this node is a child of a [Navigation] node it will register to the navigation map of the navigation node or the function [method set_navigation] can be used to set the navigation node directly. [NavigationAgent] is physics safe. - [b]Note:[/b] After [member target_position] is set, the [method get_next_path_position] function must be used once every physics frame to update the internal path logic of the NavigationAgent. The returned position from this function should be used as the next movement position for the agent's parent node. - - - $DOCS_URL/tutorials/navigation/navigation_using_navigationagents.md - - - - - - Returns the distance to the target position, using the agent's global position. The user must set [member target_position] in order for this to be accurate. - - - - - - - Returns whether or not the specified layer of the [member avoidance_layers] bitmask is enabled, given a [param layer_number] between 1 and 32. - - - - - - - Returns whether or not the specified mask of the [member avoidance_mask] bitmask is enabled, given a [param mask_number] between 1 and 32. - - - - - - Returns this agent's current path from start to finish in global coordinates. The path only updates when the target position is changed or the agent requires a repath. The path array is not intended to be used in direct path movement as the agent has its own internal path logic that would get corrupted by changing the path array manually. Use the intended [method get_next_position] once every physics frame to receive the next path point for the agents movement as this function also updates the internal path logic. - - - - - - Returns which index the agent is currently on in the navigation path's [PoolVector3Array]. - - - - - - Returns the path query result for the path the agent is currently following. - - - - - - Returns the reachable final position of the current navigation path in global coordinates. This position can change if the agent needs to update the navigation path which makes the agent emit the [signal path_changed] signal. - - - - - - Returns the [Navigation] node that the agent is using for its navigation system. - - - - - - - Returns whether or not the specified layer of the [member navigation_layers] bitmask is enabled, given a [code]layer_number[/code] between 1 and 32. - - - - - - Returns the [RID] of the navigation map for this NavigationAgent node. This function returns always the map set on the NavigationAgent node and not the map of the abstract agent on the NavigationServer. If the agent map is changed directly with the NavigationServer API the NavigationAgent node will not be aware of the map change. Use [method set_navigation_map] to change the navigation map for the NavigationAgent and also update the agent on the NavigationServer. - - - - - - Returns the next position in global coordinates that can be moved to, making sure that there are no static objects in the way. If the agent does not have a navigation path, it will return the position of the agent's parent. The use of this function once every physics frame is required to update the internal path logic of the NavigationAgent. - - - - - - Returns the [RID] of this agent on the [NavigationServer]. - - - - - - Returns [code]true[/code] if the end of the currently loaded navigation path has been reached. - [b]Note:[/b] While true prefer to stop calling update functions like [method get_next_path_position]. This avoids jittering the standing agent due to calling repeated path updates. - - - - - - Returns [code]true[/code] if [method get_final_position] is within [member target_desired_distance] of the [member target_position]. - - - - - - Returns [code]true[/code] if [member target_position] is reached. It may not always be possible to reach the target position. It should always be possible to reach the final position though. See [method get_final_position]. - - - - - - - - Based on [param value], enables or disables the specified layer in the [member avoidance_layers] bitmask, given a [param layer_number] between 1 and 32. - - - - - - - - Based on [param value], enables or disables the specified mask in the [member avoidance_mask] bitmask, given a [param mask_number] between 1 and 32. - - - - - - - Sets the [Navigation] node used by the agent. Useful when you don't want to make the agent a child of a [Navigation] node. - - - - - - - - Based on [code]value[/code], enables or disables the specified layer in the [member navigation_layers] bitmask, given a [code]layer_number[/code] between 1 and 32. - - - - - - - Sets the [RID] of the navigation map this NavigationAgent node should use and also updates the [code]agent[/code] on the NavigationServer. - - - - - - - Replaces the internal velocity in the collision avoidance simulation with [param velocity]. When an agent is teleported to a new position this function should be used in the same frame. If called frequently this function can get agents stuck. - - - - - - If [code]true[/code] the agent is registered for an RVO avoidance callback on the [NavigationServer3D]. When [member velocity] is set and the processing is completed a [code]safe_velocity[/code] Vector3 is received with a signal connection to [signal velocity_computed]. Avoidance processing with many registered agents has a significant performance cost and should only be enabled on agents that currently require it. - - - A bitfield determining the avoidance layers for this NavigationAgent. Other agent's with a matching bit on the [member avoidance_mask] will avoid this agent. - - - A bitfield determining what other avoidance agents and obstacles this NavigationAgent will avoid when a bit matches at least one of their [member avoidance_layers]. - - - The agent does not adjust the velocity for other agents that would match the [member avoidance_mask] but have a lower [member avoidance_priority]. This in turn makes the other agents with lower priority adjust their velocities even more to avoid collision with this agent. - - - If [code]true[/code] shows debug visuals for this agent. - - - If [member debug_use_custom] is [code]true[/code] uses this color for this agent instead of global color. - - - If [member debug_use_custom] is [code]true[/code] uses this rasterized point size for rendering path points for this agent instead of global point size. - - - If [code]true[/code] uses the defined [member debug_path_custom_color] for this agent instead of global color. - - - The height of the avoidance agent. Agents will ignore other agents or obstacles that are above or below their current position + height in 2D avoidance. Does nothing in 3D avoidance which uses radius spheres alone. - - - The maximum number of neighbors for the agent to consider. - - - The maximum speed that an agent can move. - - - A bitfield determining which navigation layers of navigation regions this agent will use to calculate a path. Changing it during runtime will clear the current navigation path and generate a new one, according to the new navigation layers. - - - The distance to search for other agents. - - - The distance threshold before a path point is considered to be reached. This allows agents to not have to hit a path point on the path exactly, but only to reach its general area. If this value is set too high, the NavigationAgent will skip points on the path, which can lead to leaving the navigation mesh. If this value is set too low, the NavigationAgent will be stuck in a repath loop because it will constantly overshoot or undershoot the distance to the next point on each physics frame update. - - - The height offset is subtracted from the y-axis value of any vector path position for this NavigationAgent. The NavigationAgent height offset does not change or influence the navigation mesh or pathfinding query result. Additional navigation maps that use regions with navigation meshes that the developer baked with appropriate agent radius or height values are required to support different-sized agents. - - - The maximum distance the agent is allowed away from the ideal path to the final position. This can happen due to trying to avoid collisions. When the maximum distance is exceeded, it recalculates the ideal path. - - - Additional information to return with the navigation path. - - - The path postprocessing applied to the raw path corridor found by the [member pathfinding_algorithm]. - - - The pathfinding algorithm used in the path query. - - - The radius of the avoidance agent. This is the "body" of the avoidance agent and not the avoidance maneuver starting radius (which is controlled by [member neighbor_distance]). - Does not affect normal pathfinding. To change an actor's pathfinding radius bake [NavigationMesh] resources with a different [member NavigationMesh.agent_radius] property and use different navigation maps for each actor size. - - - The distance threshold before the final target point is considered to be reached. This allows agents to not have to hit the point of the final target exactly, but only to reach its general. If this value is set too low, the NavigationAgent will be stuck in a repath loop because it will constantly overshoot or undershoot the distance to the final target point on each physics frame update. - - - If set a new navigation path from the current agent position to the [member target_position] is requested from the NavigationServer. - - - The minimal amount of time for which this agent's velocities, that are computed with the collision avoidance algorithm, are safe with respect to other agents. The larger the number, the sooner the agent will respond to other agents, but less freedom in choosing its velocities. A too high value will slow down agents movement considerably. Must be positive. - - - The minimal amount of time for which this agent's velocities, that are computed with the collision avoidance algorithm, are safe with respect to static avoidance obstacles. The larger the number, the sooner the agent will respond to static avoidance obstacles, but less freedom in choosing its velocities. A too high value will slow down agents movement considerably. Must be positive. - - - If [code]true[/code], the agent calculates avoidance velocities in 3D omnidirectionally, e.g. for games that take place in air, underwater or space. Agents using 3D avoidance only avoid other agents using 3D avoidance, and react to radius-based avoidance obstacles. They ignore any vertex-based obstacles. - If [code]false[/code], the agent calculates avoidance velocities in 2D along the x and z-axes, ignoring the y-axis. Agents using 2D avoidance only avoid other agents using 2D avoidance, and react to radius-based avoidance obstacles or vertex-based avoidance obstacles. Other agents using 2D avoidance that are below or above their current position including [member height] are ignored. - - - Sets the new wanted velocity for the agent. The avoidance simulation will try to fulfill this velocity if possible but will modify it to avoid collision with other agents and obstacles. When an agent is teleported to a new position, use [method set_velocity_forced] as well to reset the internal simulation velocity. - - - - - - - Notifies when a navigation link has been reached. - The details dictionary may contain the following keys depending on the value of [member path_metadata_flags]: - - [code]location[/code]: The start location of the link that was reached. - - [code]type[/code]: Always [constant NavigationPathQueryResult3D.PATH_SEGMENT_TYPE_LINK]. - - [code]rid[/code]: The [RID] of the link. - - [code]owner[/code]: The object which manages the link (usually [NavigationLink3D]). - - [code]link_entry_position[/code]: If [code]owner[/code] is available and the owner is a [NavigationLink2D], it will contain the global position of the link's point the agent is entering. - - [code]link_exit_position[/code]: If [code]owner[/code] is available and the owner is a [NavigationLink2D], it will contain the global position of the link's point which the agent is exiting. - - - - - Emitted once per loaded path when the agent internal navigation path index reaches the last index of the loaded path array. The agent internal navigation path index can be received with [method get_current_navigation_path_index]. - - - - - Emitted when the agent had to update the loaded path: - - because path was previously empty. - - because navigation map has changed. - - because agent pushed further away from the current path segment than the [member path_max_distance]. - - - - - Emitted once per loaded path when the agent's global position is the first time within [member target_desired_distance] to the [member target_position]. - - - - - - Notifies when the collision avoidance velocity is calculated. Emitted when [member velocity] is set. Only emitted when [member avoidance_enabled] is true. - - - - - - Notifies when a waypoint along the path has been reached. - The details dictionary may contain the following keys depending on the value of [member path_metadata_flags]: - - [code]location[/code]: The location of the waypoint that was reached. - - [code]type[/code]: The type of navigation primitive (region or link) that contains this waypoint. - - [code]rid[/code]: The [RID] of the containing navigation primitive (region or link). - - [code]owner[/code]: The object which manages the containing navigation primitive (region or link). - - - - - - diff --git a/doc/classes/NavigationAgent2D.xml b/doc/classes/NavigationAgent2D.xml deleted file mode 100644 index d4ab0da..0000000 --- a/doc/classes/NavigationAgent2D.xml +++ /dev/null @@ -1,277 +0,0 @@ - - - - 2D agent used in navigation for collision avoidance. - - - 2D agent that is used in navigation to reach a position while avoiding static and dynamic obstacles. The dynamic obstacles are avoided using RVO (Reciprocal Velocity Obstacles) collision avoidance. The agent needs navigation data to work correctly. By default this node will register to the default [World2D] navigation map. If this node is a child of a [Navigation2D] node it will register to the navigation map of the navigation node or the function [method set_navigation] can be used to set the navigation node directly. [NavigationAgent2D] is physics safe. - [b]Note:[/b] After [member target_position] is set, the [method get_next_path_position] function must be used once every physics frame to update the internal path logic of the NavigationAgent. The returned position from this function should be used as the next movement position for the agent's parent node. - - - $DOCS_URL/tutorials/navigation/navigation_using_navigationagents.md - - - - - - Returns the distance to the target position, using the agent's global position. The user must set [member target_position] in order for this to be accurate. - - - - - - - Returns whether or not the specified layer of the [member avoidance_layers] bitmask is enabled, given a [param layer_number] between 1 and 32. - - - - - - - Returns whether or not the specified mask of the [member avoidance_mask] bitmask is enabled, given a [param mask_number] between 1 and 32. - - - - - - Returns this agent's current path from start to finish in global coordinates. The path only updates when the target position is changed or the agent requires a repath. The path array is not intended to be used in direct path movement as the agent has its own internal path logic that would get corrupted by changing the path array manually. Use the intended [method get_next_position] once every physics frame to receive the next path point for the agents movement as this function also updates the internal path logic. - - - - - - Returns which index the agent is currently on in the navigation path's [PoolVector2Array]. - - - - - - Returns the path query result for the path the agent is currently following. - - - - - - Returns the reachable final position of the current navigation path in global coordinates. This can change if the navigation path is altered in any way. Because of this, it would be best to check this each frame. - - - - - - Returns the [Navigation2D] node that the agent is using for its navigation system. - - - - - - - Returns whether or not the specified layer of the [member navigation_layers] bitmask is enabled, given a [code]layer_number[/code] between 1 and 32. - - - - - - Returns the [RID] of the navigation map for this NavigationAgent node. This function returns always the map set on the NavigationAgent node and not the map of the abstract agent on the NavigationServer. If the agent map is changed directly with the NavigationServer API the NavigationAgent node will not be aware of the map change. Use [method set_navigation_map] to change the navigation map for the NavigationAgent and also update the agent on the NavigationServer. - - - - - - Returns the next position in global coordinates that can be moved to, making sure that there are no static objects in the way. If the agent does not have a navigation path, it will return the position of the agent's parent. The use of this function once every physics frame is required to update the internal path logic of the NavigationAgent. - - - - - - Returns the [RID] of this agent on the [Navigation2DServer]. - - - - - - Returns [code]true[/code] if the navigation path's final position has been reached. - - - - - - Returns true if [member target_position] is reachable. The target position is set using [member target_position]. - - - - - - Returns [code]true[/code] if [member target_position] is reached. It may not always be possible to reach the target position. It should always be possible to reach the final position though. See [method get_final_position]. - - - - - - - - Based on [param value], enables or disables the specified layer in the [member avoidance_layers] bitmask, given a [param layer_number] between 1 and 32. - - - - - - - - Based on [param value], enables or disables the specified mask in the [member avoidance_mask] bitmask, given a [param mask_number] between 1 and 32. - - - - - - - Sets the [Navigation2D] node used by the agent. Useful when you don't want to make the agent a child of a [Navigation2D] node. - - - - - - - - Based on [code]value[/code], enables or disables the specified layer in the [member navigation_layers] bitmask, given a [code]layer_number[/code] between 1 and 32. - - - - - - - Sets the [RID] of the navigation map this NavigationAgent node should use and also updates the [code]agent[/code] on the NavigationServer. - - - - - - - Replaces the internal velocity in the collision avoidance simulation with [param velocity]. When an agent is teleported to a new position this function should be used in the same frame. If called frequently this function can get agents stuck. - - - - - - If [code]true[/code] the agent is registered for an RVO avoidance callback on the [NavigationServer2D]. When [member velocity] is used and the processing is completed a [code]safe_velocity[/code] Vector2 is received with a signal connection to [signal velocity_computed]. Avoidance processing with many registered agents has a significant performance cost and should only be enabled on agents that currently require it. - - - A bitfield determining the avoidance layers for this NavigationAgent. Other agents with a matching bit on the [member avoidance_mask] will avoid this agent. - - - A bitfield determining what other avoidance agents and obstacles this NavigationAgent will avoid when a bit matches at least one of their [member avoidance_layers]. - - - The agent does not adjust the velocity for other agents that would match the [member avoidance_mask] but have a lower [member avoidance_priority]. This in turn makes the other agents with lower priority adjust their velocities even more to avoid collision with this agent. - - - If [code]true[/code] shows debug visuals for this agent. - - - If [member debug_use_custom] is [code]true[/code] uses this color for this agent instead of global color. - - - If [member debug_use_custom] is [code]true[/code] uses this line width for rendering paths for this agent instead of global line width. - - - If [member debug_use_custom] is [code]true[/code] uses this rasterized point size for rendering path points for this agent instead of global point size. - - - If [code]true[/code] uses the defined [member debug_path_custom_color] for this agent instead of global color. - - - The maximum number of neighbors for the agent to consider. - - - The maximum speed that an agent can move. - - - A bitfield determining which navigation layers of navigation regions this agent will use to calculate a path. Changing it during runtime will clear the current navigation path and generate a new one, according to the new navigation layers. - - - The distance to search for other agents. - - - The distance threshold before a path point is considered to be reached. This allows agents to not have to hit a path point on the path exactly, but only to reach its general area. If this value is set too high, the NavigationAgent will skip points on the path, which can lead too leaving the navigation mesh. If this value is set too low, the NavigationAgent will be stuck in a repath loop because it will constantly overshoot or undershoot the distance to the next point on each physics frame update. - - - The maximum distance the agent is allowed away from the ideal path to the final position. This can happen due to trying to avoid collisions. When the maximum distance is exceeded, it recalculates the ideal path. - - - Additional information to return with the navigation path. - - - The path postprocessing applied to the raw path corridor found by the [member pathfinding_algorithm]. - - - The pathfinding algorithm used in the path query. - - - The radius of the avoidance agent. This is the "body" of the avoidance agent and not the avoidance maneuver starting radius (which is controlled by [member neighbor_distance]). - Does not affect normal pathfinding. To change an actor's pathfinding radius bake [NavigationMesh] resources with a different [member NavigationMesh.agent_radius] property and use different navigation maps for each actor size. - - - The distance threshold before the final target point is considered to be reached. This allows agents to not have to hit the point of the final target exactly, but only to reach its general area. If this value is set too low, the NavigationAgent will be stuck in a repath loop because it will constantly overshoot or undershoot the distance to the final target point on each physics frame update. - - - If set a new navigation path from the current agent position to the [member target_position] is requested from the NavigationServer. - - - The minimal amount of time for which this agent's velocities, that are computed with the collision avoidance algorithm, are safe with respect to other agents. The larger the number, the sooner the agent will respond to other agents, but less freedom in choosing its velocities. A too high value will slow down agents movement considerably. Must be positive. - - - The minimal amount of time for which this agent's velocities, that are computed with the collision avoidance algorithm, are safe with respect to static avoidance obstacles. The larger the number, the sooner the agent will respond to static avoidance obstacles, but less freedom in choosing its velocities. A too high value will slow down agents movement considerably. Must be positive. - - - Sets the new wanted velocity for the agent. The avoidance simulation will try to fulfill this velocity if possible but will modify it to avoid collision with other agents and obstacles. When an agent is teleported to a new position, use [method set_velocity_forced] as well to reset the internal simulation velocity. - - - - - - - Notifies when a navigation link has been reached. - The details dictionary may contain the following keys depending on the value of [member path_metadata_flags]: - - [code]location[/code]: The start location of the link that was reached. - - [code]type[/code]: Always [constant NavigationPathQueryResult2D.PATH_SEGMENT_TYPE_LINK]. - - [code]rid[/code]: The [RID] of the link. - - [code]owner[/code]: The object which manages the link (usually [NavigationLink2D]). - - [code]link_entry_position[/code]: If [code]owner[/code] is available and the owner is a [NavigationLink2D], it will contain the global position of the link's point the agent is entering. - - [code]link_exit_position[/code]: If [code]owner[/code] is available and the owner is a [NavigationLink2D], it will contain the global position of the link's point which the agent is exiting. - - - - - Notifies when the final position is reached. - - - - - Notifies when the navigation path changes. This can be triggered by the navigation system or by the user changing the path. - - - - - Notifies when the player-defined [member target_position] is reached. - - - - - - Notifies when the collision avoidance velocity is calculated. Emitted when [member velocity] is set. Only emitted when [member avoidance_enabled] is true. - - - - - - Notifies when a waypoint along the path has been reached. - The details dictionary may contain the following keys depending on the value of [member path_metadata_flags]: - - [code]location[/code]: The location of the waypoint that was reached. - - [code]type[/code]: The type of navigation primitive (region or link) that contains this waypoint. - - [code]rid[/code]: The [RID] of the containing navigation primitive (region or link). - - [code]owner[/code]: The object which manages the containing navigation primitive (region or link). - - - - - - diff --git a/doc/classes/NavigationGeometryParser2D.xml b/doc/classes/NavigationGeometryParser2D.xml deleted file mode 100644 index fed7e29..0000000 --- a/doc/classes/NavigationGeometryParser2D.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - Parser to contribute a node's geometry data for [NavigationPolygon] baking. - - - Parser to contribute a node's geometry data for [NavigationPolygon] baking. If a script extends this class and the function [method _parses_node] is overridden and returns [code]true[/code], the overridden function [method _parse_geometry] gets called and can be used to add custom geometry data for the [NavigationPolygon] baking process. - - - - - - - - - - - Called when overridden and the [NavigationMeshGenerator] is parsing geometry for [NavigationPolygon] baking. Custom 2D geometry can be added to the [param source_geometry]. - - - - - - - Called when parsing geometry nodes for [NavigationPolygon] baking. If [code]true[/code] will call [method _parse_geometry] with this node. - - - - - - diff --git a/doc/classes/NavigationGeometryParser3D.xml b/doc/classes/NavigationGeometryParser3D.xml deleted file mode 100644 index d258880..0000000 --- a/doc/classes/NavigationGeometryParser3D.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - Parser to contribute a node's geometry data for [NavigationMesh] baking. - - - Parser to contribute a node's geometry data for [NavigationMesh] baking. If a script extends this class and the function [method _parses_node] is overridden and returns [code]true[/code], the overridden function [method _parse_geometry] gets called and can be used to add custom geometry data for the [NavigationMesh] baking process. - - - - - - - - - - - Called when overridden and the [NavigationMeshGenerator] is parsing geometry for [NavigationMesh] baking. Custom 3D geometry can be added to the [param source_geometry]. - - - - - - - Called when parsing geometry nodes for [NavigationMesh] baking. If [code]true[/code] will call [method _parse_geometry] with this node. - - - - - - diff --git a/doc/classes/NavigationLink2D.xml b/doc/classes/NavigationLink2D.xml deleted file mode 100644 index bd22e88..0000000 --- a/doc/classes/NavigationLink2D.xml +++ /dev/null @@ -1,84 +0,0 @@ - - - - A link between two positions on [NavigationRegion2D]s that agents can be routed through. - - - A link between two positions on [NavigationRegion2D]s that agents can be routed through. These positions can be on the same [NavigationRegion2D] or on two different ones. Links are useful to express navigation methods other than traveling along the surface of the navigation polygon, such as ziplines, teleporters, or gaps that can be jumped across. - - - $DOCS_URL/tutorials/navigation/navigation_using_navigationlinks.md - - - - - - Returns the [member end_position] that is relative to the link as a global position. - - - - - - Returns the [member start_position] that is relative to the link as a global position. - - - - - - - Returns whether or not the specified layer of the [member navigation_layers] bitmask is enabled, given a [param layer_number] between 1 and 32. - - - - - - - Sets the [member end_position] that is relative to the link from a global [param position]. - - - - - - - Sets the [member start_position] that is relative to the link from a global [param position]. - - - - - - - - Based on [param value], enables or disables the specified layer in the [member navigation_layers] bitmask, given a [param layer_number] between 1 and 32. - - - - - - Whether this link can be traveled in both directions or only from [member start_position] to [member end_position]. - - - Whether this link is currently active. If [code]false[/code], [method NavigationServer2D.map_get_path] will ignore this link. - - - Ending position of the link. - This position will search out the nearest polygon in the navigation mesh to attach to. - The distance the link will search is controlled by [method NavigationServer2D.map_set_link_connection_radius]. - - - When pathfinding enters this link from another regions navigation mesh the [member enter_cost] value is added to the path distance for determining the shortest path. - - - A bitfield determining all navigation layers the link belongs to. These navigation layers will be checked when requesting a path with [method NavigationServer2D.map_get_path]. - - - Starting position of the link. - This position will search out the nearest polygon in the navigation mesh to attach to. - The distance the link will search is controlled by [method NavigationServer2D.map_set_link_connection_radius]. - - - When pathfinding moves along the link the traveled distance is multiplied with [member travel_cost] for determining the shortest path. - - - - - diff --git a/doc/classes/NavigationLink3D.xml b/doc/classes/NavigationLink3D.xml deleted file mode 100644 index 4b8af11..0000000 --- a/doc/classes/NavigationLink3D.xml +++ /dev/null @@ -1,84 +0,0 @@ - - - - A link between two positions on [NavigationRegion3D]s that agents can be routed through. - - - A link between two positions on [NavigationRegion3D]s that agents can be routed through. These positions can be on the same [NavigationRegion3D] or on two different ones. Links are useful to express navigation methods other than traveling along the surface of the navigation mesh, such as ziplines, teleporters, or gaps that can be jumped across. - - - $DOCS_URL/tutorials/navigation/navigation_using_navigationlinks.md - - - - - - Returns the [member end_position] that is relative to the link as a global position. - - - - - - Returns the [member start_position] that is relative to the link as a global position. - - - - - - - Returns whether or not the specified layer of the [member navigation_layers] bitmask is enabled, given a [param layer_number] between 1 and 32. - - - - - - - Sets the [member end_position] that is relative to the link from a global [param position]. - - - - - - - Sets the [member start_position] that is relative to the link from a global [param position]. - - - - - - - - Based on [param value], enables or disables the specified layer in the [member navigation_layers] bitmask, given a [param layer_number] between 1 and 32. - - - - - - Whether this link can be traveled in both directions or only from [member start_position] to [member end_position]. - - - Whether this link is currently active. If [code]false[/code], [method NavigationServer3D.map_get_path] will ignore this link. - - - Ending position of the link. - This position will search out the nearest polygon in the navigation mesh to attach to. - The distance the link will search is controlled by [method NavigationServer3D.map_set_link_connection_radius]. - - - When pathfinding enters this link from another regions navigation mesh the [member enter_cost] value is added to the path distance for determining the shortest path. - - - A bitfield determining all navigation layers the link belongs to. These navigation layers will be checked when requesting a path with [method NavigationServer3D.map_get_path]. - - - Starting position of the link. - This position will search out the nearest polygon in the navigation mesh to attach to. - The distance the link will search is controlled by [method NavigationServer3D.map_set_link_connection_radius]. - - - When pathfinding moves along the link the traveled distance is multiplied with [member travel_cost] for determining the shortest path. - - - - - diff --git a/doc/classes/NavigationMesh.xml b/doc/classes/NavigationMesh.xml deleted file mode 100644 index 653df85..0000000 --- a/doc/classes/NavigationMesh.xml +++ /dev/null @@ -1,203 +0,0 @@ - - - - A mesh that defines the areas traversable by navigation agents that are safe from obstructions. - - - A NavigationMesh is used in pathfinding to describe the traversable area that is safe from collision and other obstructions, assuming an agent's center position at zero radius. The mesh data can be created and baked to polygons with the [NavigationMeshGenerator] by parsing source geometry from the [SceneTree]. The mesh data can also be created without baking by adding the required arrays of vertices and polygon indices with a script. - When making procedual changes, a call to [method commit_changes] is required to apply these changes and to synchronize them with the [NavigationServer]. - - - https://github.com/Relintai/pandemonium_demo_projects/tree/master/3d/navmesh - $DOCS_URL/tutorials/navigation/navigation_using_navigationmeshes.md - - - - - - - Adds a polygon using the indices of the vertices you get when calling [method get_vertices]. - - - - - - Clears both the internal polygons and vertices arrays. - - - - - - Clears the array of polygons, but it doesn't clear the array of vertices. - - - - - - Applies all changes to vertices and polygons and synchronizes with the NavigationServer. - - - - - - - Initializes the navigation mesh by setting the vertices and indices according to a [Mesh]. - - - - - - - Returns whether the specified [code]bit[/code] of the [member geometry_collision_mask] is set. - - - - - - - Returns a [PoolIntArray] containing the indices of the vertices of a created polygon. - - - - - - Returns the number of polygons in the navigation mesh. - - - - - - Returns a [PoolVector3Array] containing all the vertices being used to create the polygons. - - - - - - - - If [code]value[/code] is [code]true[/code], sets the specified [code]bit[/code] in the [member geometry_collision_mask]. - If [code]value[/code] is [code]false[/code], clears the specified [code]bit[/code] in the [member geometry_collision_mask]. - - - - - - - Sets the vertices that need to be indexed with the [method add_polygon] or [method set_polygons] methods. When finished changing the navigation mesh call [method commit_changes] in order to synchronize the changes with the [NavigationServer]. - - - - - - The minimum floor to ceiling height that will still allow the floor area to be considered walkable. - [b]Note:[/b] While baking, this value will be rounded up to the nearest multiple of [member cell_height]. - - - The minimum ledge height that is considered to still be traversable. - [b]Note:[/b] While baking, this value will be rounded down to the nearest multiple of [member cell_height]. - - - The maximum slope that is considered walkable, in degrees. - - - The distance to erode/shrink the walkable area of the heightfield away from obstructions. - [b]Note:[/b] While baking, this value will be rounded up to the nearest multiple of [member cell_size]. - - - The cell height used to rasterize the navigation mesh vertices on the Y axis. Must match with the cell height on the navigation map. - - - The cell size used to rasterize the navigation mesh vertices on the XZ plane. Must match with the cell size on the navigation map. - - - The sampling distance to use when generating the detail mesh, in cell unit. - - - The maximum distance the detail mesh surface should deviate from heightfield, in cell unit. - - - The maximum distance a simplfied contour's border edges should deviate the original raw contour. - - - The maximum allowed length for contour edges along the border of the mesh. A value of [code]0.0[/code] disables this feature. - [b]Note:[/b] While baking, this value will be rounded up to the nearest multiple of [member cell_size]. - - - If the baking [AABB] has a volume the navigation mesh baking will be restricted to its enclosing area. - - - The position offset applied to the [member filter_baking_aabb] [AABB]. - - - - - - - - - The physics layers to scan for static colliders. - Only used when [member geometry_parsed_geometry_type] is [constant PARSED_GEOMETRY_STATIC_COLLIDERS] or [constant PARSED_GEOMETRY_BOTH]. - - - Determines which type of nodes will be parsed as geometry. See [enum ParsedGeometryType] for possible values. - - - The source of the geometry used when baking. See [enum SourceGeometryMode] for possible values. - - - The name of the group to scan for geometry. - Only used when [member geometry_source_geometry_mode] is [constant SOURCE_GEOMETRY_GROUPS_WITH_CHILDREN] or [constant SOURCE_GEOMETRY_GROUPS_EXPLICIT]. - - - Any regions with a size smaller than this will be merged with larger regions if possible. - [b]Note:[/b] This value will be squared to calculate the number of cells. For example, a value of 20 will set the number of cells to 400. - - - The minimum size of a region for it to be created. - [b]Note:[/b] This value will be squared to calculate the minimum number of cells allowed to form isolated island areas. For example, a value of 8 will set the number of cells to 64. - - - - - The maximum number of vertices allowed for polygons generated during the contour to polygon conversion process. - - - - - Watershed partitioning. Generally the best choice if you precompute the navigation mesh, use this if you have large open areas. - - - Monotone partitioning. Use this if you want fast navigation mesh generation. - - - Layer partitioning. Good choice to use for tiled navigation mesh with medium and small sized tiles. - - - Represents the size of the [enum SamplePartitionType] enum. - - - Parses mesh instances as geometry. This includes [MeshInstance], [CSGShape], and [GridMap] nodes. - - - Parses [StaticBody] colliders as geometry. The collider should be in any of the layers specified by [member geometry_collision_mask]. - - - Both [constant PARSED_GEOMETRY_MESH_INSTANCES] and [constant PARSED_GEOMETRY_STATIC_COLLIDERS]. - - - Represents the size of the [enum ParsedGeometryType] enum. - - - Scans the child nodes of the root node recursively for geometry. - - - Scans nodes in a group and their child nodes recursively for geometry. The group is specified by [member geometry_source_group_name]. - - - Uses nodes in a group for geometry. The group is specified by [member geometry_source_group_name]. - - - Represents the size of the [enum SourceGeometryMode] enum. - - - diff --git a/doc/classes/NavigationMeshGenerator.xml b/doc/classes/NavigationMeshGenerator.xml deleted file mode 100644 index 438fd0f..0000000 --- a/doc/classes/NavigationMeshGenerator.xml +++ /dev/null @@ -1,114 +0,0 @@ - - - - Server for navigation mesh baking and source geometry parsing. - - - Server for navigation mesh baking and source geometry parsing. [NavigationMesh] baking is the process of creating a simplified mesh used for pathfinding out of (complex) level geometry. For this process, the [NavigationMeshGenerator] parses scene geometry from nodes and uses this information for the creation of the final navigation mesh according to bake parameters. - Source geometry parsing and navigation mesh baking are costly operations. It is best to do them infrequently and with the help of background threads at runtime. Source geometry parsing has to finish on the exact frame it was started even when using threads, as the scene tree is not safe to parse when doing updates, and also, by nature, the scene tree itself is not thread-safe. If the amount of geometry that must be parsed is too big, framerate issues may occur. - To work around the runtime framerate issues, the source geometry can be parsed to a [NavigationMeshSourceGeometryData2D] or a [NavigationMeshSourceGeometryData3D] resource. This resource can later be (re)used at runtime to bake multiple navigation meshes with different parameters in background threads without touching the scene tree again (assuming the nodes that contribute source geometry have not changed). - - - $DOCS_URL/tutorials/navigation/navigation_using_navigationmeshes.md - - - - - - - - - Bakes the provided [param navigation_polygon] with the data from the provided [param source_geometry_data]. After the process is finished the optional [param callback] will be called. - - - - - - - - - Bakes the provided [param navigation_mesh] with the data from the provided [param source_geometry_data]. After the process is finished the optional [param callback] will be called. - - - - - - - Returns [code]true[/code] if [param navigation_mesh] is currently baking or geometry parsing. - - - - - - - Returns [code]true[/code] if [param navigation_polygon] is currently baking or geometry parsing. - - - - - - - - - Parses the [SceneTree] (not thread-safe) for source geometry according to the properties of [param navigation_polygon] and returns a [NavigationMeshSourceGeometryData2D] that can be used to bake a navigation mesh. After the process is finished the optional [param callback] will be called. - - - - - - - - - Parses the [SceneTree] (not thread-safe) for source geometry according to the properties of [param navigation_mesh] and returns a [NavigationMeshSourceGeometryData2D] that can be used to bake a navigation mesh. After the process is finished the optional [param callback] will be called. - - - - - - - - - Uses both [method parse_2d_source_geometry_data] and [method bake_2d_from_source_geometry_data] in sequence. After the process is finished the optional [param callback] will be called. - - - - - - - - - Uses both [method parse_3d_source_geometry_data] and [method bake_3d_from_source_geometry_data] in sequence. After the process is finished the optional [param callback] will be called. - - - - - - - Registers a 2d navigation geometry parser to contribute geometry data from parser specified node class(es) for navigation mesh baking. - - - - - - - Registers a 3d navigation geometry parser to contribute geometry data from parser specified node class(es) for navigation mesh baking. - - - - - - - Unregisters the specific 2d navigation geometry parser. - - - - - - - Unregisters the specific 3d navigation geometry parser. - - - - - - diff --git a/doc/classes/NavigationMeshInstance.xml b/doc/classes/NavigationMeshInstance.xml deleted file mode 100644 index 5d76e27..0000000 --- a/doc/classes/NavigationMeshInstance.xml +++ /dev/null @@ -1,96 +0,0 @@ - - - - An instance of a [NavigationMesh]. It tells the [Navigation] node what can be navigated and what cannot, based on the [NavigationMesh] resource. - By default this node will register to the default [World3D] navigation map. If this node is a child of a [Navigation] node it will register to the navigation map of the navigation node. - Two regions can be connected to each other if they share a similar edge. You can set the minimum distance between two vertices required to connect two edges by using [method NavigationServer.map_set_edge_connection_margin]. - [b]Note:[/b] Overlapping two regions' navigation meshes is not enough for connecting two regions. They must share a similar edge. - The cost of entering this region from another region can be controlled with the [member enter_cost] value. - [b]Note[/b]: This value is not added to the path cost when the start position is already inside this region. - The cost of traveling distances inside this region can be controlled with the [member travel_cost] multiplier. - - - Bakes the [NavigationMesh]. If [code]on_thread[/code] is set to [code]true[/code] (default), the baking is done on a separate thread. Baking on separate thread is useful because navigation baking is not a cheap operation. When it is completed, it automatically sets the new [NavigationMesh]. Please note that baking on separate thread may be very slow if geometry is parsed from meshes as async access to each mesh involves heavy synchronization. Also, please note that baking on a separate thread is automatically disabled on operating systems that cannot use threads (such as HTML5 with threads disabled). - - - $DOCS_URL/tutorials/navigation/navigation_using_navigationregions.md - - - - - - - Bakes the [NavigationMesh]. If [code]on_thread[/code] is set to [code]true[/code] (default), the baking is done on a separate thread. Baking on separate thread is useful because navigation baking is not a cheap operation. When it is completed, it automatically sets the new [NavigationMesh]. Please note that baking on separate thread may be very slow if geometry is parsed from meshes as async access to each mesh involves heavy synchronization. - [b]Note:[/b] Only functional in Pandemonium builds with a [NavigationMeshGenerator] implementation available. - - - - - - - Returns whether or not the specified layer of the [member navigation_layers] bitmask is enabled, given a [code]layer_number[/code] between 1 and 32. - - - - - - Returns the current navigation map [RID] use by this region. - - - - - - Returns the [RID] of this region on the [NavigationServer]. Combined with [method NavigationServer.map_get_closest_point_owner] can be used to identify the [NavigationMeshInstance] closest to a point on the merged navigation map. - - - - - - - - Based on [code]value[/code], enables or disables the specified layer in the [member navigation_layers] bitmask, given a [code]layer_number[/code] between 1 and 32. - - - - - - - Sets the [RID] of the navigation map this region should use. By default the region will automatically join the [World3D] default navigation map so this function is only required to override the default map. - - - - - - Determines if the [NavigationMeshInstance] is enabled or disabled. - - - When pathfinding enters this regions navigation mesh from another regions navigation mesh the [code]enter_cost[/code] value is added to the path distance for determining the shortest path. - - - A bitfield determining all navigation map layers the [NavigationMesh] belongs to. On path requests with [method NavigationServer.map_get_path] navigation meshes without matching layers will be ignored and the navigation map will only proximity merge different navigation meshes with matching layers. - - - The [NavigationMesh] resource to use. - - - When pathfinding moves inside this regions navigation mesh the traveled distances are multiplied with [code]travel_cost[/code] for determining the shortest path. - - - If enabled the navigation region will use edge connections to connect with other navigation regions within proximity of the navigation map edge connection margin. - - - - - - Emitted when a navigation mesh bake operation is completed. - - - - - Emitted when the used navigation mesh is replaced or changes to the internals of the current navigation mesh are committed. - - - - - - diff --git a/doc/classes/NavigationMeshSourceGeometryData2D.xml b/doc/classes/NavigationMeshSourceGeometryData2D.xml deleted file mode 100644 index 45ba80e..0000000 --- a/doc/classes/NavigationMeshSourceGeometryData2D.xml +++ /dev/null @@ -1,67 +0,0 @@ - - - - Contains parsed source geometry data for use in [NavigationPolygon] baking with the [NavigationMeshGenerator]. - - - Contains parsed source geometry data for use in [NavigationPolygon] baking with the [NavigationMeshGenerator]. - - - - - - - - - Adds the outline points of a shape as obstructed area. - - - - - - - Adds the outline points of a shape as traversable area. - - - - - - Clears the internal data. - - - - - - Returns all the obstructed area outlines arrays. - - - - - - Returns all the traversable area outlines arrays. - - - - - - Returns [b]true[/b] when parsed source geometry data exists. - - - - - - - Sets all the obstructed area outlines arrays. - - - - - - - Sets all the traversable area outlines arrays. - - - - - - diff --git a/doc/classes/NavigationMeshSourceGeometryData3D.xml b/doc/classes/NavigationMeshSourceGeometryData3D.xml deleted file mode 100644 index 259233f..0000000 --- a/doc/classes/NavigationMeshSourceGeometryData3D.xml +++ /dev/null @@ -1,79 +0,0 @@ - - - - Contains parsed source geometry data for use in [NavigationMesh] baking with the [NavigationMeshGenerator]. - - - Contains parsed source geometry data for use in [NavigationMesh] baking with the [NavigationMeshGenerator]. - - - - - - - - - - Adds an array of vertex positions to the geometry data for navigation mesh baking to form triangulated faces. For each face the array must have three vertex positions in clockwise winding order. Since [NavigationMesh] resource have no transform all vertex positions need to be offset by the node's transform using the [code]xform[/code] parameter. - - - - - - - - Adds the geometry data of a [Mesh] resource to the navigation mesh baking data. The mesh must have valid triangulated mesh data to be considered. Since [NavigationMesh] resource have no transform all vertex positions need to be offset by the node's transform using the [code]xform[/code] parameter. - - - - - - - - Adds an [Array] the size of [constant Mesh.ARRAY_MAX] and with vertices at index [constant Mesh.ARRAY_VERTEX] and indices at index [constant Mesh.ARRAY_INDEX] to the navigation mesh baking data. The array must have valid triangulated mesh data to be considered. Since [NavigationMesh] resource have no transform all vertex positions need to be offset by the node's transform using the [code]xform[/code] parameter. - - - - - - Clears the internal data. - - - - - - Returns the parsed source geometry data indices array. - - - - - - Returns the parsed source geometry data vertices array. - - - - - - Returns [b]true[/b] when parsed source geometry data exists. - - - - - - - Sets the parsed source geometry data indices. The indices need to be matched with appropriated vertices. - [b]Warning:[/b] Inappropriate data can crash the baking process of the involved third-party libraries. - - - - - - - Sets the parsed source geometry data vertices. The vertices need to be matched with appropriated indices. - [b]Warning:[/b] Inappropriate data can crash the baking process of the involved third-party libraries. - - - - - - diff --git a/doc/classes/NavigationObstacle.xml b/doc/classes/NavigationObstacle.xml deleted file mode 100644 index 365645e..0000000 --- a/doc/classes/NavigationObstacle.xml +++ /dev/null @@ -1,90 +0,0 @@ - - - - 3D Obstacle used in navigation to constrain avoidance controlled agents outside or inside an area. - - - 3D Obstacle used in navigation to constrain avoidance controlled agents outside or inside an area. The obstacle needs a navigation map and outline vertices defined to work correctly. - If the obstacle's vertices are winded in clockwise order, avoidance agents will be pushed in by the obstacle, otherwise, avoidance agents will be pushed out. Outlines must not cross or overlap. - Obstacles are [b]not[/b] a replacement for a (re)baked navigation mesh. Obstacles [b]don't[/b] change the resulting path from the pathfinding, obstacles only affect the navigation avoidance agent movement by altering the suggested velocity of the avoidance agent. - Obstacles using vertices can warp to a new position but should not moved every frame as each move requires a rebuild of the avoidance map. - - - $DOCS_URL/tutorials/navigation/navigation_using_navigationobstacles.md - - - - - - - Returns whether or not the specified layer of the [member avoidance_layers] bitmask is enabled, given a [param layer_number] between 1 and 32. - - - - - - Returns the [Navigation] node that the obstacle is using for its navigation system. - - - - - - Returns the [RID] of the navigation map for this NavigationObstacle node. This function returns always the map set on the NavigationObstacle node and not the map of the abstract obstacle on the NavigationServer. If the obstacle map is changed directly with the NavigationServer API the NavigationObstacle node will not be aware of the map change. Use [method set_navigation_map] to change the navigation map for the NavigationObstacle and also update the obstacle on the NavigationServer. - - - - - - Returns the [RID] of this obstacle on the [NavigationServer3D]. - - - - - - - - Based on [param value], enables or disables the specified layer in the [member avoidance_layers] bitmask, given a [param layer_number] between 1 and 32. - - - - - - - Sets the [Navigation] node used by the obstacle. Useful when you don't want to make the obstacle a child of a [Navigation] node. - - - - - - - Sets the [RID] of the navigation map this NavigationObstacle node should use and also updates the [code]obstacle[/code] on the NavigationServer. - - - - - - If [code]true[/code] the obstacle affects avoidance using agents. - - - A bitfield determining the avoidance layers for this obstacle. Agent's with a matching bit on the their avoidance mask will avoid this obstacle. - - - Sets the obstacle height used in 2D avoidance. 2D avoidance using agent's ignore obstacles that are below or above them. - - - Sets the avoidance radius for the obstacle. - - - If [code]true[/code] the obstacle affects 3D avoidance using agent's with obstacle [member radius]. - If [code]false[/code] the obstacle affects 2D avoidance using agent's with both obstacle [member vertices] as well as obstacle [member radius]. - - - Sets the wanted velocity for the obstacle so other agent's can better predict the obstacle if it is moved with a velocity regularly (every frame) instead of warped to a new position. Does only affect avoidance for the obstacles [member radius]. Does nothing for the obstacles static vertices. - - - The outline vertices of the obstacle. If the vertices are winded in clockwise order agents will be pushed in by the obstacle, else they will be pushed out. Outlines can not be crossed or overlap. Should the vertices using obstacle be warped to a new position agent's can not predict this movement and may get trapped inside the obstacle. - - - - - diff --git a/doc/classes/NavigationObstacle2D.xml b/doc/classes/NavigationObstacle2D.xml deleted file mode 100644 index ce1b8d8..0000000 --- a/doc/classes/NavigationObstacle2D.xml +++ /dev/null @@ -1,83 +0,0 @@ - - - - 2D Obstacle used in navigation to constrain avoidance controlled agents outside or inside an area. - - - 2D Obstacle used in navigation to constrain avoidance controlled agents outside or inside an area. The obstacle needs a navigation map and outline vertices defined to work correctly. - If the obstacle's vertices are winded in clockwise order, avoidance agents will be pushed in by the obstacle, otherwise, avoidance agents will be pushed out. Outlines must not cross or overlap. - Obstacles are [b]not[/b] a replacement for a (re)baked navigation mesh. Obstacles [b]don't[/b] change the resulting path from the pathfinding, obstacles only affect the navigation avoidance agent movement by altering the suggested velocity of the avoidance agent. - Obstacles using vertices can warp to a new position but should not moved every frame as each move requires a rebuild of the avoidance map. - - - $DOCS_URL/tutorials/navigation/navigation_using_navigationobstacles.md - - - - - - - Returns whether or not the specified layer of the [member avoidance_layers] bitmask is enabled, given a [param layer_number] between 1 and 32. - - - - - - Returns the [Navigation2D] node that the obstacle is using for its navigation system. - - - - - - Returns the [RID] of the navigation map for this NavigationObstacle2D node. This function returns always the map set on the NavigationObstacle node and not the map of the abstract obstacle on the NavigationServer. If the obstacle map is changed directly with the NavigationServer API the NavigationObstacle node will not be aware of the map change. Use [method set_navigation_map] to change the navigation map for the NavigationObstacle2D and also update the obstacle on the [NavigationServer2D]. - - - - - - Returns the [RID] of this obstacle on the [NavigationServer2D]. - - - - - - - - Based on [param value], enables or disables the specified layer in the [member avoidance_layers] bitmask, given a [param layer_number] between 1 and 32. - - - - - - - Sets the [Navigation2D] node used by the obstacle. Useful when you don't want to make the obstacle a child of a [Navigation2D] node. - - - - - - - Sets the [RID] of the navigation map this NavigationObstacle2D node should use and also updates the [code]obstacle[/code] on the [NavigationServer2D]. - - - - - - If [code]true[/code] the obstacle affects avoidance using agents. - - - A bitfield determining the avoidance layers for this obstacle. Agent's with a matching bit on the their avoidance mask will avoid this obstacle. - - - Sets the avoidance radius for the obstacle. - - - Sets the wanted velocity for the obstacle so other agent's can better predict the obstacle if it is moved with a velocity regularly (every frame) instead of warped to a new position. Does only affect avoidance for the obstacles [member radius]. Does nothing for the obstacles static vertices. - - - The outline vertices of the obstacle. If the vertices are winded in clockwise order agents will be pushed in by the obstacle, else they will be pushed out. Outlines can not be crossed or overlap. Should the vertices using obstacle be warped to a new position agent's can not predict this movement and may get trapped inside the obstacle. - - - - - diff --git a/doc/classes/NavigationPathQueryParameters2D.xml b/doc/classes/NavigationPathQueryParameters2D.xml deleted file mode 100644 index a82992c..0000000 --- a/doc/classes/NavigationPathQueryParameters2D.xml +++ /dev/null @@ -1,63 +0,0 @@ - - - - Provides parameters for 2D navigation path queries. - - - By changing various properties of this object, such as the start and target position, you can configure path queries to the [NavigationServer2D]. - - - $DOCS_URL/tutorials/navigation/navigation_using_navigationpathqueryobjects.md - - - - - - The navigation [code]map[/code] [RID] used in the path query. - - - Additional information to include with the navigation path. - - - The navigation layers the query will use (as a bitmask). - - - The path postprocessing applied to the raw path corridor found by the [member pathfinding_algorithm]. - - - The pathfinding algorithm used in the path query. - - - The pathfinding start position in global coordinates. - - - The pathfinding target position in global coordinates. - - - - - The path query uses the default A* pathfinding algorithm. - - - Applies a funnel algorithm to the raw path corridor found by the pathfinding algorithm. This will result in the shortest path possible inside the path corridor. This postprocessing very much depends on the navigation mesh polygon layout and the created corridor. Especially tile- or gridbased layouts can face artificial corners with diagonal movement due to a jagged path corridor imposed by the cell shapes. - - - Centers every path position in the middle of the traveled navigation mesh polygon edge. This creates better paths for tile- or gridbased layouts that restrict the movement to the cells center. - - - Don't include any additional metadata about the returned path. - - - Include the type of navigation primitive (region or link) that each point of the path goes through. - - - Include the [RID]s of the regions and links that each point of the path goes through. - - - Include the [code]ObjectID[/code]s of the [Object]s which manage the regions and links each point of the path goes through. - - - Include all available metadata about the returned path. - - - diff --git a/doc/classes/NavigationPathQueryParameters3D.xml b/doc/classes/NavigationPathQueryParameters3D.xml deleted file mode 100644 index a2415c3..0000000 --- a/doc/classes/NavigationPathQueryParameters3D.xml +++ /dev/null @@ -1,63 +0,0 @@ - - - - Provides parameters for 3D navigation path queries. - - - By changing various properties of this object, such as the start and target position, you can configure path queries to the [NavigationServer3D]. - - - $DOCS_URL/tutorials/navigation/navigation_using_navigationpathqueryobjects.md - - - - - - The navigation [code]map[/code] [RID] used in the path query. - - - Additional information to include with the navigation path. - - - The navigation layers the query will use (as a bitmask). - - - The path postprocessing applied to the raw path corridor found by the [member pathfinding_algorithm]. - - - The pathfinding algorithm used in the path query. - - - The pathfinding start position in global coordinates. - - - The pathfinding target position in global coordinates. - - - - - The path query uses the default A* pathfinding algorithm. - - - Applies a funnel algorithm to the raw path corridor found by the pathfinding algorithm. This will result in the shortest path possible inside the path corridor. This postprocessing very much depends on the navigation mesh polygon layout and the created corridor. Especially tile- or gridbased layouts can face artificial corners with diagonal movement due to a jagged path corridor imposed by the cell shapes. - - - Centers every path position in the middle of the traveled navigation mesh polygon edge. This creates better paths for tile- or gridbased layouts that restrict the movement to the cells center. - - - Don't include any additional metadata about the returned path. - - - Include the type of navigation primitive (region or link) that each point of the path goes through. - - - Include the [RID]s of the regions and links that each point of the path goes through. - - - Include the [code]ObjectID[/code]s of the [Object]s which manage the regions and links each point of the path goes through. - - - Include all available metadata about the returned path. - - - diff --git a/doc/classes/NavigationPathQueryResult2D.xml b/doc/classes/NavigationPathQueryResult2D.xml deleted file mode 100644 index 55dd670..0000000 --- a/doc/classes/NavigationPathQueryResult2D.xml +++ /dev/null @@ -1,42 +0,0 @@ - - - - Represents the result of a 2D pathfinding query. - - - This class stores the result of a 2D navigation path query from the [NavigationServer2D]. - - - $DOCS_URL/tutorials/navigation/navigation_using_navigationpathqueryobjects.md - - - - - - Reset the result object to its initial state. This is useful to reuse the object across multiple queries. - - - - - - The resulting path array from the navigation query. All path array positions are in global coordinates. Without customized query parameters this is the same path as returned by [method NavigationServer2D.map_get_path]. - - - The [code]ObjectID[/code]s of the [Object]s which manage the regions and links each point of the path goes through. - - - The [RID]s of the regions and links that each point of the path goes through. - - - The type of navigation primitive (region or link) that each point of the path goes through. - - - - - This segment of the path goes through a region. - - - This segment of the path goes through a link. - - - diff --git a/doc/classes/NavigationPathQueryResult3D.xml b/doc/classes/NavigationPathQueryResult3D.xml deleted file mode 100644 index 77d934d..0000000 --- a/doc/classes/NavigationPathQueryResult3D.xml +++ /dev/null @@ -1,42 +0,0 @@ - - - - Represents the result of a 3D pathfinding query. - - - This class stores the result of a 3D navigation path query from the [NavigationServer3D]. - - - $DOCS_URL/tutorials/navigation/navigation_using_navigationpathqueryobjects.md - - - - - - Reset the result object to its initial state. This is useful to reuse the object across multiple queries. - - - - - - The resulting path array from the navigation query. All path array positions are in global coordinates. Without customized query parameters this is the same path as returned by [method NavigationServer3D.map_get_path]. - - - The [code]ObjectID[/code]s of the [Object]s which manage the regions and links each point of the path goes through. - - - The [RID]s of the regions and links that each point of the path goes through. - - - The type of navigation primitive (region or link) that each point of the path goes through. - - - - - This segment of the path goes through a region. - - - This segment of the path goes through a link. - - - diff --git a/doc/classes/NavigationPolygon.xml b/doc/classes/NavigationPolygon.xml deleted file mode 100644 index 6feb9c7..0000000 --- a/doc/classes/NavigationPolygon.xml +++ /dev/null @@ -1,271 +0,0 @@ - - - - A NavigationPolygon is used in pathfinding to describe the traversable area that is safe from collision and other obstructions, assuming an agent's center position at zero radius. - - - A NavigationPolygon is used in pathfinding to describe the traversable area that is safe from collision and other obstructions, assuming an agent's center position at zero radius. The mesh data can be created and baked to polygons with the [NavigationMeshGenerator] by drawing outlines in the Editor, or defining outlines by script, or by parsing source geometry from the [SceneTree]. The mesh data can also be created without outlines and baking by adding the required arrays of vertices and polygon indices more manually and calling [method commit_changes] afterwards. - When doing procedual changes a call to [method commit_changes] is required to apply all the made changes and to synchronize the changes with the [NavigationServer2D]. - In scripts there are two more manual ways to create navigation polygons. Either by using the [method add_outline] method and baking with the [NavigationMeshGenerator], or using the methods [method set_vertices] and [method set_polygons] directly. - Using [method add_outline]: - [codeblock] - var new_navigation_polygon = NavigationPolygon.new() - var new_navigation_polygon_outline = PoolVector2Array([Vector2(0, 0), Vector2(0, 50), Vector2(50, 50), Vector2(50, 0)]) - new_navigation_polygon.add_outline(new_navigation_polygon_outline) - NavigationMeshGenerator.bake_2d_from_source_geometry_data(new_navigation_polygon, NavigationMeshSourceGeometryData2D.new()); - $NavigationRegion2D.navigation_polygon = new_navigation_polygon - [/codeblock] - Using [method add_polygon] and indices of the vertices array. - [codeblock] - var new_navigation_polygon = NavigationPolygon.new() - var new_navigation_polygon_vertices = PoolVector2Array([Vector2(0, 0), Vector2(0, 50), Vector2(50, 50), Vector2(50, 0)]) - new_navigation_polygon.vertices = new_navigation_polygon_vertices - var new_navigation_polygon_polygon_indices = PoolIntArray([0, 1, 2, 3]) - new_navigation_polygon.add_polygon(new_navigation_polygon_polygon_indices) - new_navigation_polygon.commit_changes() - $NavigationRegion2D.navigation_polygon = new_navigation_polygon - [/codeblock] - - - https://github.com/Relintai/pandemonium_demo_projects/tree/master/2d/navigation - $DOCS_URL/tutorials/navigation/navigation_using_navigationmeshes.md - - - - - - - Appends a [PoolVector2Array] that contains the vertices of an outline to the internal array that contains all the outlines. You have to call [method make_polygons_from_outlines] in order for this array to be converted to polygons that the engine will use. - - - - - - - - Adds a [PoolVector2Array] that contains the vertices of an outline to the internal array that contains all the outlines at a fixed position. You have to call [method make_polygons_from_outlines] in order for this array to be converted to polygons that the engine will use. - - - - - - - Adds a polygon using the indices of the vertices you get when calling [method get_vertices]. - - - - - - Clears the array of the outlines, but it doesn't clear the vertices and the polygons that were created by them. - - - - - - Clears the array of polygons, but it doesn't clear the array of outlines and vertices. - - - - - - Applies all changes to vertices and polygons and synchronizes with the [NavigationServer2D]. - - - - - - Returns the array of baked outlines. The baked outlines are the result of a finished [NavigationMeshGenerator] baking process and primarily used for debugging purposes. - - - - - - - Returns whether or not the specified layer of the [member geometry_collision_mask] is enabled, given a [param layer_number] between 1 and 32. - - - - - - - - - - - - Returns a [PoolVector2Array] containing the vertices of an outline that was created in the editor or by script. - - - - - - Returns the number of outlines that were created in the editor or by script. - - - - - - - - - - - - Returns a [PoolIntArray] containing the indices of the vertices of a created polygon. - - - - - - Returns the number of polygons. - - - - - - Returns the array of polygons used by the internal navigation mesh. Each polygon array consists of the indices for the vertices that make the polygon. - - - - - - Returns a [PoolVector2Array] containing all the vertices being used to create the polygons. - - - - - - Creates polygons from the outlines added in the editor or by script. - - - - - - - Removes an outline created in the editor or by script. - - - - - - - Sets the array of baked outlines. The baked outlines are the result of a finished [NavigationMeshGenerator] baking process and primarily used for debugging purposes. - - - - - - - - - - - - - - - Changes an outline created in the editor or by script. - - - - - - - Sets the outline arrays. The outlines need to be baked to actual navigation mesh polygons by using the [NavigationMeshGenerator]. - - - - - - - Sets the navigation mesh polygons. Each polygon array needs to consist of the indices for the vertices that make the polygon. - - - - - - - Sets the vertices that need to be indexed with the [method add_polygon] or [method set_polygons] methods. When finished changing the navigation polygon call [method commit_changes] in order to synchronize the changes with the [Navigation2DServer]. - - - - - - The distance to erode/shrink the traversable area from obstructions when baking polygons. - - - The cell size used to rasterize the navigation mesh vertices. Must match with the cell size on the navigation map. - - - The physics layers to scan for static colliders. Only used when [member geometry_parsed_geometry_type] is [constant PARSED_GEOMETRY_STATIC_COLLIDERS] or [constant PARSED_GEOMETRY_BOTH]. - - - Determines which type of nodes will be parsed as geometry. See [enum ParsedGeometryType] for possible values. - - - The source of the geometry used when baking. See [enum SourceGeometryMode] for possible values. - - - The name of the group to scan for geometry. Only used when [member geometry_source_geometry_mode] is [constant SOURCE_GEOMETRY_GROUPS_WITH_CHILDREN] or [constant SOURCE_GEOMETRY_GROUPS_EXPLICIT]. - - - The [enum OffsettingJoinType] used for joins when offsetting the bake polygons by [member agent_radius]. - - - Filling rule for baking polygons that defines in complex polygons which polygon sub-regions will be considered inside a given polygon, and which sub-regions will not, aka what is a hole. - - - - - Parses mesh instances and other visual shapes as geometry. This includes [MeshInstance2D], [MultiMeshInstance2D], [Polygon2D], and [TileMap] (first TileMapLayer only) nodes. - - - Parses [StaticBody2D], and [TileMap] (first TileMapLayer only) colliders as geometry. The collider should be in any of the layers specified by [member geometry_collision_mask]. - - - Both [constant PARSED_GEOMETRY_MESH_INSTANCES] and [constant PARSED_GEOMETRY_STATIC_COLLIDERS]. - - - Represents the size of the [enum ParsedGeometryType] enum. - - - Scans the child nodes of the root node recursively for geometry. - - - Scans nodes in a group and their child nodes recursively for geometry. The group is specified by [member geometry_source_group_name]. - - - Uses nodes in a group for geometry. The group is specified by [member geometry_source_group_name]. - - - Represents the size of the [enum SourceGeometryMode] enum. - - - Only odd numbered sub-regions are filled - - - Only non-zero sub-regions are filled - - - Only sub-regions with winding counts greater zero are filled. - - - Only sub-regions with winding counts smaller zero are filled. - - - Represents the size of the [enum PolygonFillRule] enum. - - - Squaring is applied uniformally at all joins where the internal join angle is less that 90 degrees. The squared edge will be at exactly the offset distance from the join vertex. - - - Rounding is applied to all joins that have convex external angles and the exact offset distance from the join vertex is maintained. - - - Creates mitered joins such that the line of junction bisects the angle. To avoid narrow angled joins producing excessively long and narrow spikes mitered joins are automatically squared when they exceed a given maximum miter distance relative to the offset distance. - - - Represents the size of the [enum OffsettingJoinType] enum. - - - diff --git a/doc/classes/NavigationPolygonInstance.xml b/doc/classes/NavigationPolygonInstance.xml deleted file mode 100644 index f732861..0000000 --- a/doc/classes/NavigationPolygonInstance.xml +++ /dev/null @@ -1,117 +0,0 @@ - - - - A region of the 2D navigation map. - - - A region of the navigation map. It tells the [Navigation2DServer] what can be navigated and what cannot, based on its [NavigationPolygon] resource. - By default this node will register to the default [World2D] navigation map. If this node is a child of a [Navigation2D] node it will register to the navigation map of the navigation node. - Two regions can be connected to each other if they share a similar edge. You can set the minimum distance between two vertices required to connect two edges by using [method Navigation2DServer.map_set_edge_connection_margin]. - [b]Note:[/b] Overlapping two regions' polygons is not enough for connecting two regions. They must share a similar edge. - The pathfinding cost of entering this region from another region can be controlled with the [member enter_cost] value. - [b]Note[/b]: This value is not added to the path cost when the start position is already inside this region. - The pathfinding cost of traveling distances inside this region can be controlled with the [member travel_cost] multiplier. - - - $DOCS_URL/tutorials/navigation/navigation_using_navigationregions.md - - - - - - - Bakes the [NavigationPolygon]. If [param on_thread] is set to [code]true[/code] (default), the baking is done on a separate thread. - - - - - - - Returns whether or not the specified layer of the [member avoidance_layers] bitmask is enabled, given a [param layer_number] between 1 and 32. - - - - - - - Returns whether or not the specified layer of the [member navigation_layers] bitmask is enabled, given a [code]layer_number[/code] between 1 and 32. - - - - - - Returns the current navigation map [RID] use by this region. - - - - - - Returns the [RID] of this region on the [Navigation2DServer]. Combined with [method Navigation2DServer.map_get_closest_point_owner] can be used to identify the [NavigationPolygonInstance] closest to a point on the merged navigation map. - - - - - - - - Based on [param value], enables or disables the specified layer in the [member avoidance_layers] bitmask, given a [param layer_number] between 1 and 32. - - - - - - - - Based on [code]value[/code], enables or disables the specified layer in the [member navigation_layers] bitmask, given a [code]layer_number[/code] between 1 and 32. - - - - - - - Sets the [RID] of the navigation map this region should use. By default the region will automatically join the [World2D] default navigation map so this function is only required to override the default map. - - - - - - A bitfield determining all avoidance layers for the avoidance constrain. - - - If [code]true[/code] constraints avoidance agent's with an avoidance mask bit that matches with a bit of the [member avoidance_layers] to the navigation polygon. Due to each navigation polygon outline creating an obstacle and each polygon edge creating an avoidance line constrain keep the navigation polygon shape as simple as possible for performance. - [b]Experimental:[/b] This is an experimental feature and should not be used in production as agent's can get stuck on the navigation polygon corners and edges especially at high frame rate. - - - Determines if the [NavigationPolygonInstance] is enabled or disabled. - - - When pathfinding enters this regions navigation mesh from another regions navigation mesh the [code]enter_cost[/code] value is added to the path distance for determining the shortest path. - - - A bitfield determining all navigation map layers the [NavigationPolygon] belongs to. On path requests with [method Navigation2DServer.map_get_path] navigation meshes without matching layers will be ignored and the navigation map will only proximity merge different navigation meshes with matching layers. - - - The [NavigationPolygon] resource to use. - - - When pathfinding moves inside this regions navigation mesh the traveled distances are multiplied with [code]travel_cost[/code] for determining the shortest path. - - - If enabled the navigation region will use edge connections to connect with other navigation regions within proximity of the navigation map edge connection margin. - - - - - - Emitted when a navigation polygon bake operation is completed. - - - - - Emitted when the used navigation polygon is replaced or changes to the internals of the current navigation polygon are committed. - - - - - - diff --git a/doc/classes/NavigationServer.xml b/doc/classes/NavigationServer.xml deleted file mode 100644 index 259fb9d..0000000 --- a/doc/classes/NavigationServer.xml +++ /dev/null @@ -1,916 +0,0 @@ - - - - Server interface for low-level 3D navigation access. - - - NavigationServer is the server responsible for all 3D navigation. It handles several objects, namely maps, regions and agents. - Maps are made up of regions, which are made of navigation meshes. Together, they define the navigable areas in the 3D world. - [b]Note:[/b] Most NavigationServer changes take effect after the next physics frame and not immediately. This includes all changes made to maps, regions or agents by navigation related Nodes in the SceneTree or made through scripts. - For two regions to be connected to each other, they must share a similar edge. An edge is considered connected to another if both of its two vertices are at a distance less than [member Navigation.edge_connection_margin] to the respective other edge's vertex. - To use the collision avoidance system, you may use agents. You can set an agent's target velocity, then the servers will emit a callback with a modified velocity. - [b]Note:[/b] The collision avoidance system ignores regions. Using the modified velocity as-is might lead to pushing and agent outside of a navigable area. This is a limitation of the collision avoidance system, any more complex situation may require the use of the physics engine. - [b]Note:[/b] By default, the expensive calculations for avoidance are done in a thread. In HTML5 exports without thread support, they will be done on the main thread, which can lead to performance issues. - This server keeps tracks of any call and executes them during the sync phase. This means that you can request any change to the map, using any thread, without worrying. - - - https://github.com/Relintai/pandemonium_demo_projects/tree/master/3d/navmesh - $DOCS_URL/tutorials/navigation/navigation_using_navigationservers.md - - - - - - Creates the agent. - - - - - - - Returns [code]true[/code] if the provided [param agent] has avoidance enabled. - - - - - - - Returns the navigation map [RID] the requested [code]agent[/code] is currently assigned to. - - - - - - - Returns [code]true[/code] if the specified [param agent] is paused. - - - - - - - Returns [code]true[/code] if the provided [param agent] uses avoidance in 3D space Vector3(x,y,z) instead of horizontal 2D Vector2(x,y) / Vector3(x,0.0,z). - - - - - - - Returns [code]true[/code] if the map got changed the previous frame. - - - - - - - - - - Sets the callback [Callable] that gets called after each avoidance processing step for the [param agent]. The calculated [code]safe_velocity[/code] will be dispatched with a signal to the object just before the physics calculations. - [b]Note:[/b] Created callbacks are always processed independently of the SceneTree state as long as the agent is on a navigation map and not freed. To disable the dispatch of a callback from an agent use [method agent_set_avoidance_callback] again with an empty [Callable]. - - - - - - - - If [param enabled] the provided [param agent] calculates avoidance. - - - - - - - - Set the agent's [code]avoidance_layers[/code] bitmask. - - - - - - - - Set the agent's [code]avoidance_mask[/code] bitmask. - - - - - - - - Set the agent's [code]avoidance_priority[/code] with a [param priority] between 0.0 (lowest priority) to 1.0 (highest priority). - The specified [param agent] does not adjust the velocity for other agents that would match the [code]avoidance_mask[/code] but have a lower [code] avoidance_priority[/code]. This in turn makes the other agents with lower priority adjust their velocities even more to avoid collision with this agent. - - - - - - - - Updates the provided [param agent] [param height]. - - - - - - - - Puts the agent in the map. - - - - - - - - Sets the maximum number of other agents the agent takes into account in the navigation. The larger this number, the longer the running time of the simulation. If the number is too low, the simulation will not be safe. - - - - - - - - Sets the maximum speed of the agent. Must be positive. - - - - - - - - Sets the maximum distance to other agents this agent takes into account in the navigation. The larger this number, the longer the running time of the simulation. If the number is too low, the simulation will not be safe. - - - - - - - - If [param paused] is true the specified [param agent] will not be processed, e.g. calculate avoidance velocities or receive avoidance callbacks. - - - - - - - - Sets the position of the agent in world space. - - - - - - - - Sets the radius of the agent. - - - - - - - - The minimal amount of time for which the agent's velocities that are computed by the simulation are safe with respect to other agents. The larger this number, the sooner this agent will respond to the presence of other agents, but the less freedom this agent has in choosing its velocities. A too high value will slow down agents movement considerably. Must be positive. - - - - - - - - The minimal amount of time for which the agent's velocities that are computed by the simulation are safe with respect to static avoidance obstacles. The larger this number, the sooner this agent will respond to the presence of static avoidance obstacles, but the less freedom this agent has in choosing its velocities. A too high value will slow down agents movement considerably. Must be positive. - - - - - - - - Sets if the agent uses the 2D avoidance or the 3D avoidance while avoidance is enabled. - If [code]true[/code] the agent calculates avoidance velocities in 3D for the xyz-axis, e.g. for games that take place in air, unterwater or space. The 3D using agent only avoids other 3D avoidance using agent's. The 3D using agent only reacts to radius based avoidance obstacles. The 3D using agent ignores any vertices based obstacles. The 3D using agent only avoids other 3D using agent's. - If [code]false[/code] the agent calculates avoidance velocities in 2D along the xz-axis ignoring the y-axis. The 2D using agent only avoids other 2D avoidance using agent's. The 2D using agent reacts to radius avoidance obstacles. The 2D using agent reacts to vertices based avoidance obstacles. The 2D using agent only avoids other 2D using agent's. 2D using agents will ignore other 2D using agents or obstacles that are below their current position or above their current position including the agents height in 2D avoidance. - - - - - - - - Sets [param velocity] as the new wanted velocity for the specified [param agent]. The avoidance simulation will try to fulfil this velocity if possible but will modify it to avoid collision with other agent's and obstacles. When an agent is teleported to a new position use [method agent_set_velocity_forced] as well to reset the internal simulation velocity. - - - - - - - - Replaces the internal velocity in the collision avoidance simulation with [param velocity] for the specified [param agent]. When an agent is teleported to a new position this function should be used in the same frame. If called frequently this function can get agents stuck. - - - - - - - Destroys the given RID. - - - - - - - - - - - Returns all created navigation map [RID]s on the NavigationServer. This returns both 2D and 3D created navigation maps as there is technically no distinction between them. - - - - - - - Returns information about the current state of the NavigationServer. See [enum ProcessInfo] for a list of available states. - - - - - - Create a new link between two positions on a map. - - - - - - - Returns [code]true[/code] if the specified [param link] is enabled. - - - - - - - Returns the ending position of this [code]link[/code]. - - - - - - - Returns the [code]enter_cost[/code] of this [code]link[/code]. - - - - - - - Returns the navigation map [RID] the requested [code]link[/code] is currently assigned to. - - - - - - - Returns the navigation layers for this [code]link[/code]. - - - - - - - Returns the [code]ObjectID[/code] of the object which manages this link. - - - - - - - Returns the starting position of this [code]link[/code]. - - - - - - - Returns the [code]travel_cost[/code] of this [code]link[/code]. - - - - - - - Returns whether this [code]link[/code] can be travelled in both directions. - - - - - - - - Sets whether this [code]link[/code] can be travelled in both directions. - - - - - - - - If [param enabled] is [code]true[/code] the specified [param link] will contribute to its current navigation map. - - - - - - - - Sets the exit position for the [code]link[/code]. - - - - - - - - Sets the [code]enter_cost[/code] for this [code]link[/code]. - - - - - - - - Sets the navigation map [RID] for the link. - - - - - - - - Set the links's navigation layers. This allows selecting links from a path request (when using [method NavigationServer3D.map_get_path]). - - - - - - - - Set the [code]ObjectID[/code] of the object which manages this link. - - - - - - - - Sets the entry position for this [code]link[/code]. - - - - - - - - Sets the [code]travel_cost[/code] for this [code]link[/code]. - - - - - - Create a new map. - - - - - - - This function immediately forces synchronization of the specified navigation [code]map[/code] [RID]. By default navigation maps are only synchronized at the end of each physics frame. This function can be used to immediately (re)calculate all the navigation meshes and region connections of the navigation map. This makes it possible to query a navigation path for a changed map immediately and in the same frame (multiple times if needed). - Due to technical restrictions the current NavigationServer command queue will be flushed. This means all already queued update commands for this physics frame will be executed, even those intended for other maps, regions and agents not part of the specified map. The expensive computation of the navigation meshes and region connections of a map will only be done for the specified map. Other maps will receive the normal synchronization at the end of the physics frame. Should the specified map receive changes after the forced update it will update again as well when the other maps receive their update. - Avoidance processing and dispatch of the [code]safe_velocity[/code] signals is untouched by this function and continues to happen for all maps and agents at the end of the physics frame. - [b]Note:[/b] With great power comes great responsibility. This function should only be used by users that really know what they are doing and have a good reason for it. Forcing an immediate update of a navigation map requires locking the NavigationServer and flushing the entire NavigationServer command queue. Not only can this severely impact the performance of a game but it can also introduce bugs if used inappropriately without much foresight. - - - - - - - Returns all navigation agents [RID]s that are currently assigned to the requested navigation [code]map[/code]. - - - - - - - Returns the map cell height used to rasterize the navigation mesh vertices on the Y axis. - - - - - - - Returns the map cell size used to rasterize the navigation mesh vertices on the XZ plane. - - - - - - - - Returns the point closest to the provided [code]to_point[/code] on the navigation mesh surface. - - - - - - - - Returns the normal for the point returned by [method map_get_closest_point]. - - - - - - - - Returns the owner region RID for the point returned by [method map_get_closest_point]. - - - - - - - - - - Returns the closest point between the navigation surface and the segment. - - - - - - - Returns the edge connection margin of the map. This distance is the minimum vertex distance needed to connect two edges from different regions. - - - - - - - Returns the link connection radius of the map. This distance is the maximum range any link will search for navigation mesh polygons to connect to. - - - - - - - Returns all navigation link [RID]s that are currently assigned to the requested navigation [code]map[/code]. - - - - - - - Returns all navigation obstacle [RID]s that are currently assigned to the requested navigation [code]map[/code]. - - - - - - - - - - - Returns the navigation path to reach the destination from the origin. [code]navigation_layers[/code] is a bitmask of all region layers that are allowed to be in the path. - - - - - - - Returns all navigation regions [RID]s that are currently assigned to the requested navigation [code]map[/code]. - - - - - - - Returns the map's up direction. - - - - - - - Returns true if the navigation [param map] allows navigation regions to use edge connections to connect with other navigation regions within proximity of the navigation map edge connection margin. - - - - - - - Returns [code]true[/code] if the map is active. - - - - - - - - Sets the map active. - - - - - - - - Sets the map cell height used to rasterize the navigation mesh vertices on the Y axis. Must match with the cell height of the used navigation meshes. - - - - - - - - Set the map cell size used to weld the navigation mesh polygons. - - - - - - - - Set the map edge connection margin used to weld the compatible region edges. - - - - - - - - Set the map's link connection radius used to connect links to navigation polygons. - - - - - - - - Sets the map up direction. - - - - - - - - Set the navigation [param map] edge connection use. If [param enabled] the navigation map allows navigation regions to use edge connections to connect with other navigation regions within proximity of the navigation map edge connection margin. - - - - - - Creates a new obstacle. - - - - - - - Returns [code]true[/code] if the provided [param obstacle] has avoidance enabled. - - - - - - - Returns the navigation map [RID] the requested [param obstacle] is currently assigned to. - - - - - - - Returns [code]true[/code] if the specified [param obstacle] is paused. - - - - - - - Returns [code]true[/code] if the provided [param obstacle] uses avoidance in 3D space Vector3(x,y,z) instead of horizontal 2D Vector2(x,y) / Vector3(x,0.0,z). - - - - - - - - If [param enabled] the provided [param obstacle] affects avoidance using agents. - - - - - - - - Set the obstacles's [code]avoidance_layers[/code] bitmask. - - - - - - - - Sets the [param height] for the [param obstacle]. In 3D agents will ignore obstacles that are above or below them while using 2D avoidance. - - - - - - - - Assigns the [param obstacle] to a navigation map. - - - - - - - - If [param paused] is true the specified [param obstacle] will not be processed, e.g. affect avoidance velocities. - - - - - - - - Updates the [param position] in world space for the [param obstacle]. - - - - - - - - Sets the radius of the dynamic obstacle. - - - - - - - - Sets if the [param obstacle] uses the 2D avoidance or the 3D avoidance while avoidance is enabled. - - - - - - - - Sets [param velocity] of the dynamic [param obstacle]. Allows other agents to better predict the movement of the dynamic obstacle. Only works in combination with the radius of the obstacle. - - - - - - - - Sets the outline vertices for the obstacle. If the vertices are winded in clockwise order agents will be pushed in by the obstacle, else they will be pushed out. - - - - - - - - Queries a path in a given navigation map. Start and target position and other parameters are defined through [NavigationPathQueryParameters3D]. Updates the provided [NavigationPathQueryResult3D] result object with the path among other results requested by the query. - - - - - - Creates a new region. - - - - - - - - Returns the ending point of a connection door. [code]connection[/code] is an index between 0 and the return value of [method region_get_connections_count]. - - - - - - - - Returns the starting point of a connection door. [code]connection[/code] is an index between 0 and the return value of [method region_get_connections_count]. - - - - - - - Returns how many connections this [code]region[/code] has with other regions in the map. - - - - - - - Returns [code]true[/code] if the specified [param region] is enabled. - - - - - - - Returns the [code]enter_cost[/code] of this [code]region[/code]. - - - - - - - Returns the navigation map [RID] the requested [code]region[/code] is currently assigned to. - - - - - - - Returns the region's navigation layers. - - - - - - - Returns the [code]ObjectID[/code] of the object which manages this region. - - - - - - - Returns the [code]travel_cost[/code] of this [code]region[/code]. - - - - - - - Returns true if the navigation [param region] is set to use edge connections to connect with other navigation regions within proximity of the navigation map edge connection margin. - - - - - - - - Returns [code]true[/code] if the provided [code]point[/code] in world space is currently owned by the provided navigation [code]region[/code]. Owned in this context means that one of the region's navigation mesh polygon faces has a possible position at the closest distance to this point compared to all other navigation meshes from other navigation regions that are also registered on the navigation map of the provided region. - If multiple navigation meshes have positions at equal distance the navigation region whose polygons are processed first wins the ownership. Polygons are processed in the same order that navigation regions were registered on the NavigationServer. - [b]Note:[/b] If navigation meshes from different navigation regions overlap (which should be avoided in general) the result might not be what is expected. - - - - - - - - If [param enabled] is [code]true[/code] the specified [param region] will contribute to its current navigation map. - - - - - - - - Sets the [code]enter_cost[/code] for this [code]region[/code]. - - - - - - - - Sets the map for the region. - - - - - - - - Set the region's navigation layers. This allows selecting regions from a path request (when using [method NavigationServer.map_get_path]). - - - - - - - - Sets the navigation mesh for the region. - - - - - - - - Set the [code]ObjectID[/code] of the object which manages this region. - - - - - - - - Sets the global transformation for the region. - - - - - - - - Sets the [code]travel_cost[/code] for this [code]region[/code]. - - - - - - - - If [param enabled] the navigation [param region] will use edge connections to connect with other navigation regions within proximity of the navigation map edge connection margin. - - - - - - - Control activation of this server. - - - - - - - If [code]true[/code] enables debug mode on the NavigationServer. - - - - - - - Emitted when avoidance debug settings are changed. Only available in debug builds. - - - - - - Emitted when a navigation map is updated, when a region moves or is modified. - - - - - Emitted when navigation debug settings are changed. Only available in debug builds. - - - - - - Constant to get the number of active navigation maps. - - - Constant to get the number of active navigation regions. - - - Constant to get the number of active navigation agents processing avoidance. - - - Constant to get the number of active navigation links. - - - Constant to get the number of navigation mesh polygons. - - - Constant to get the number of navigation mesh polygon edges. - - - Constant to get the number of navigation mesh polygon edges that were merged due to edge key overlap. - - - Constant to get the number of navigation mesh polygon edges that are considered connected by edge proximity. - - - Constant to get the number of navigation mesh polygon edges that could not be merged but may be still connected by edge proximity or with links. - - - diff --git a/doc/classes/Node.xml b/doc/classes/Node.xml index 3e2a111..845c8b3 100644 --- a/doc/classes/Node.xml +++ b/doc/classes/Node.xml @@ -440,21 +440,6 @@ - - - - Returns [code]true[/code] if the physics interpolated flag is set for this Node (see [member physics_interpolation_mode]). - [b]Note:[/b] Interpolation will only be active is both the flag is set [b]and[/b] physics interpolation is enabled within the [SceneTree]. This can be tested using [method is_physics_interpolated_and_enabled]. - - - - - - Returns [code]true[/code] if physics interpolation is enabled (see [member physics_interpolation_mode]) [b]and[/b] enabled in the [SceneTree]. - This is a convenience version of [method is_physics_interpolated] that also checks whether physics interpolation is enabled globally. - See [member SceneTree.physics_interpolation] and [member ProjectSettings.physics/common/physics_interpolation]. - - @@ -632,15 +617,6 @@ Requests that [code]_ready[/code] be called again. Note that the method won't be called immediately, but is scheduled for when the node is added to the scene tree again (see [method _ready]). [code]_ready[/code] is called only for the node which requested it, which means that you need to request ready for each child if you want them to call [code]_ready[/code] too (in which case, [code]_ready[/code] will be called in the same order as it would normally). - - - - When physics interpolation is active, moving a node to a radically different transform (such as placement within a level) can result in a visible glitch as the object is rendered moving from the old to new position over the physics tick. - This glitch can be prevented by calling [code]reset_physics_interpolation[/code], which temporarily turns off interpolation until the physics tick is complete. - [constant NOTIFICATION_RESET_PHYSICS_INTERPOLATION] will be received by the node and all children recursively. - [b]Note:[/b] This function should be called [b]after[/b] moving the node, rather than before. - - @@ -885,10 +861,6 @@ Pause mode. How the node will behave if the [SceneTree] is paused. - - Allows enabling or disabling physics interpolation per node, offering a finer grain of control than turning physics interpolation on and off globally. - [b]Note:[/b] This can be especially useful for [Camera]s, where custom interpolation can sometimes give superior results. - The node's priority in the execution order of the enabled processing callbacks (i.e. [constant NOTIFICATION_PROCESS], [constant NOTIFICATION_PHYSICS_PROCESS] and their internal counterparts). Nodes whose process priority value is [i]lower[/i] will have their processing callbacks executed first. @@ -1003,9 +975,6 @@ Notification received when the node is ready, just before [constant NOTIFICATION_READY] is received. Unlike the latter, it's sent every time the node enters tree, instead of only once. - - Notification received when [method reset_physics_interpolation] is called on the node or parent nodes. - Notification received right before the scene with the node is saved in the editor. This notification is only sent in the Godot editor and will not occur in exported projects. diff --git a/doc/classes/Occluder.xml b/doc/classes/Occluder.xml deleted file mode 100644 index 456236a..0000000 --- a/doc/classes/Occluder.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - Allows [OccluderShape]s to be used for occlusion culling. - - - [Occluder]s that are placed within your scene will automatically cull objects that are hidden from view by the occluder. This can increase performance by decreasing the amount of objects drawn. - [Occluder]s are totally dynamic, you can move them as you wish. This means you can for example, place occluders on a moving spaceship, and have it occlude objects as it flies past. - You can place a large number of [Occluder]s within a scene. As it would be counterproductive to cull against hundreds of occluders, the system will automatically choose a selection of these for active use during any given frame, based a screen space metric. Larger occluders are favored, as well as those close to the camera. Note that a small occluder close to the camera may be a better occluder in terms of screen space than a large occluder far in the distance. - The type of occlusion primitive is determined by the [OccluderShape] that you add to the [Occluder]. Some [OccluderShape]s may allow more than one primitive in a single, node, for greater efficiency. - Although [Occluder]s work in general use, they also become even more powerful when used in conjunction with the portal system. Occluders are placed in rooms (based on their origin), and can block portals (and thus entire rooms) as well as objects from rendering. - - - - - - - - - - - - - - - - - - diff --git a/doc/classes/OccluderPolygon2D.xml b/doc/classes/OccluderPolygon2D.xml deleted file mode 100644 index 9a631c9..0000000 --- a/doc/classes/OccluderPolygon2D.xml +++ /dev/null @@ -1,36 +0,0 @@ - - - - Defines a 2D polygon for LightOccluder2D. - - - Editor facility that helps you draw a 2D polygon used as resource for [LightOccluder2D]. - - - - - - - - If [code]true[/code], closes the polygon. A closed OccluderPolygon2D occludes the light coming from any direction. An opened OccluderPolygon2D occludes the light only at its outline's direction. - - - The culling mode to use. - - - A [Vector2] array with the index for polygon's vertices positions. - [b]Note:[/b] The returned value is a copy of the underlying array, rather than a reference. - - - - - Culling is disabled. See [member cull_mode]. - - - Culling is performed in the clockwise direction. See [member cull_mode]. - - - Culling is performed in the counterclockwise direction. See [member cull_mode]. - - - diff --git a/doc/classes/OccluderShape.xml b/doc/classes/OccluderShape.xml deleted file mode 100644 index 4cbdb90..0000000 --- a/doc/classes/OccluderShape.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - Base class for shapes used for occlusion culling by the [Occluder] node. - - - [Occluder]s can use any primitive shape derived from [OccluderShape]. - - - - - - - - diff --git a/doc/classes/OccluderShapePolygon.xml b/doc/classes/OccluderShapePolygon.xml deleted file mode 100644 index c3e444e..0000000 --- a/doc/classes/OccluderShapePolygon.xml +++ /dev/null @@ -1,45 +0,0 @@ - - - - Polygon occlusion primitive for use with the [Occluder] node. - - - [OccluderShape]s are resources used by [Occluder] nodes, allowing geometric occlusion culling. - The polygon must be a convex polygon. The polygon points can be created and deleted either in the Editor inspector or by calling [code]set_polygon_points[/code]. The points of the edges can be set by dragging the handles in the Editor viewport. - Additionally each polygon occluder can optionally support a single hole. If you add at least three points in the Editor inspector to the hole, you can drag the edge points of the hole in the Editor viewport. - In general, the lower the number of edges in polygons and holes, the faster the system will operate at runtime, so in most cases you will want to use 4 points for each. - - - - - - - - - - Sets an individual hole point position. - - - - - - - - Sets an individual polygon point position. - - - - - - Allows changing the hole geometry from code. - - - Allows changing the polygon geometry from code. - - - Specifies whether the occluder should operate from both sides. If [code]false[/code], the occluder will operate one way only. - - - - - diff --git a/doc/classes/OccluderShapeSphere.xml b/doc/classes/OccluderShapeSphere.xml deleted file mode 100644 index a9c8264..0000000 --- a/doc/classes/OccluderShapeSphere.xml +++ /dev/null @@ -1,37 +0,0 @@ - - - - Spherical occlusion primitive for use with the [Occluder] node. - - - [OccluderShape]s are resources used by [Occluder] nodes, allowing geometric occlusion culling. - This shape can include multiple spheres. These can be created and deleted either in the Editor inspector or by calling [code]set_spheres[/code]. The sphere positions can be set by dragging the handle in the Editor viewport. The radius can be set with the smaller handle. - - - - - - - - - - Sets an individual sphere's position. - - - - - - - - Sets an individual sphere's radius. - - - - - - The sphere data can be accessed as an array of [Plane]s. The position of each sphere is stored in the [code]normal[/code], and the radius is stored in the [code]d[/code] value of the plane. - - - - - diff --git a/doc/classes/OmniLight.xml b/doc/classes/OmniLight.xml deleted file mode 100644 index 2749ceb..0000000 --- a/doc/classes/OmniLight.xml +++ /dev/null @@ -1,46 +0,0 @@ - - - - Omnidirectional light, such as a light bulb or a candle. - - - An Omnidirectional light is a type of [Light] that emits light in all directions. The light is attenuated by distance and this attenuation can be configured by changing its energy, radius, and attenuation parameters. - [b]Note:[/b] By default, only 32 OmniLights may affect a single mesh [i]resource[/i] at once. Consider splitting your level into several meshes to decrease the likelihood that more than 32 lights will affect the same mesh resource. Splitting the level mesh will also improve frustum culling effectiveness, leading to greater performance. If you need to use more lights per mesh, you can increase [member ProjectSettings.rendering/limits/rendering/max_lights_per_object] at the cost of shader compilation times. - - - $DOCS_URL/tutorials/3d/lights_and_shadows.md - - - - - - The light's attenuation (drop-off) curve. A number of presets are available in the [b]Inspector[/b] by right-clicking the curve. - - - The light's radius. Note that the effectively lit area may appear to be smaller depending on the [member omni_attenuation] in use. No matter the [member omni_attenuation] in use, the light will never reach anything outside this radius. - [b]Note:[/b] [member omni_range] is not affected by [member Spatial.scale] (the light's scale or its parent's scale). - - - See [enum ShadowDetail]. - - - The shadow rendering mode to use for this [OmniLight]. See [enum ShadowMode]. - [b]Note:[/b] In GLES2, [constant SHADOW_CUBE] is only supported on GPUs that feature support for depth cubemaps. Old GPUs such as the Radeon HD 4000 series don't support cubemap shadows and will fall back to dual paraboloid shadows as a result. - - - - - - Shadows are rendered to a dual-paraboloid texture. Faster than [constant SHADOW_CUBE], but lower-quality. - - - Shadows are rendered to a cubemap. Slower than [constant SHADOW_DUAL_PARABOLOID], but higher-quality. - - - Use more detail vertically when computing the shadow. - - - Use more detail horizontally when computing the shadow. - - - diff --git a/doc/classes/PCKPacker.xml b/doc/classes/PCKPacker.xml deleted file mode 100644 index 614982b..0000000 --- a/doc/classes/PCKPacker.xml +++ /dev/null @@ -1,45 +0,0 @@ - - - - Creates packages that can be loaded into a running project. - - - The [PCKPacker] is used to create packages that can be loaded into a running project using [method ProjectSettings.load_resource_pack]. - [codeblock] - var packer = PCKPacker.new() - packer.pck_start("test.pck") - packer.add_file("res://text.txt", "text.txt") - packer.flush() - [/codeblock] - The above [PCKPacker] creates package [code]test.pck[/code], then adds a file named [code]text.txt[/code] at the root of the package. - - - - - - - - - - Adds the [code]source_path[/code] file to the current PCK package at the [code]pck_path[/code] internal path (should start with [code]res://[/code]). - - - - - - - Writes the files specified using all [method add_file] calls since the last flush. If [code]verbose[/code] is [code]true[/code], a list of files added will be printed to the console for easier debugging. - - - - - - - - Creates a new PCK file with the name [code]pck_name[/code]. The [code].pck[/code] file extension isn't added automatically, so it should be part of [code]pck_name[/code] (even though it's not required). - - - - - - diff --git a/doc/classes/PHashTranslation.xml b/doc/classes/PHashTranslation.xml deleted file mode 100644 index 91405b5..0000000 --- a/doc/classes/PHashTranslation.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - Optimized translation. - - - Optimized translation. Uses real-time compressed translations, which results in very small dictionaries. - - - - - - - - - Generates and sets an optimized translation from the given [Translation] resource. - - - - - - diff --git a/doc/classes/PanoramaSky.xml b/doc/classes/PanoramaSky.xml deleted file mode 100644 index 61ba2ee..0000000 --- a/doc/classes/PanoramaSky.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - A type of [Sky] used to draw a background texture. - - - A resource referenced in an [Environment3D] that is used to draw a background. The Panorama sky functions similar to skyboxes in other engines, except it uses an equirectangular sky map instead of a cube map. - Using an HDR panorama is strongly recommended for accurate, high-quality reflections. Godot supports the Radiance HDR ([code].hdr[/code]) and OpenEXR ([code].exr[/code]) image formats for this purpose. - You can use [url=https://danilw.github.io/GLSL-howto/cubemap_to_panorama_js/cubemap_to_panorama.html]this tool[/url] to convert a cube map to an equirectangular sky map. - - - - - - - - [Texture] to be applied to the PanoramaSky. - - - - - diff --git a/doc/classes/ParallaxLayer.xml b/doc/classes/ParallaxLayer.xml index 5c4d92a..228d48f 100644 --- a/doc/classes/ParallaxLayer.xml +++ b/doc/classes/ParallaxLayer.xml @@ -23,7 +23,6 @@ Multiplies the ParallaxLayer's motion. If an axis is set to [code]0[/code], it will not scroll. - diff --git a/doc/classes/ParticlesMaterial.xml b/doc/classes/ParticlesMaterial.xml deleted file mode 100644 index 6ad66ee..0000000 --- a/doc/classes/ParticlesMaterial.xml +++ /dev/null @@ -1,334 +0,0 @@ - - - - Particle properties for [Particles] and [Particles2D] nodes. - - - ParticlesMaterial defines particle properties and behavior. It is used in the [code]process_material[/code] of [Particles] and [Particles2D] emitter nodes. - Some of this material's properties are applied to each particle when emitted, while others can have a [CurveTexture] applied to vary values over the lifetime of the particle. - When a randomness ratio is applied to a property it is used to scale that property by a random amount. The random ratio is used to interpolate between [code]1.0[/code] and a random number less than one, the result is multiplied by the property to obtain the randomized property. For example a random ratio of [code]0.4[/code] would scale the original property between [code]0.4-1.0[/code] of its original value. - - - - - - - - - Returns [code]true[/code] if the specified flag is enabled. - - - - - - - Returns the value of the specified parameter. - - - - - - - Returns the randomness ratio associated with the specified parameter. - - - - - - - Returns the [Texture] used by the specified parameter. - - - - - - - - If [code]true[/code], enables the specified flag. See [enum Flags] for options. - - - - - - - - Sets the specified [enum Parameter]. - - - - - - - - Sets the randomness ratio for the specified [enum Parameter]. - - - - - - - - Sets the [Texture] for the specified [enum Parameter]. - - - - - - Initial rotation applied to each particle, in degrees. - [b]Note:[/b] Only applied when [member flag_disable_z] or [member flag_rotate_y] are [code]true[/code] or the [SpatialMaterial] being used to draw the particle is using [constant SpatialMaterial.BILLBOARD_PARTICLES]. - - - Each particle's rotation will be animated along this [CurveTexture]. - - - Rotation randomness ratio. - - - Initial angular velocity applied to each particle in [i]degrees[/i] per second. Sets the speed of rotation of the particle. - [b]Note:[/b] Only applied when [member flag_disable_z] or [member flag_rotate_y] are [code]true[/code] or the [SpatialMaterial] being used to draw the particle is using [constant SpatialMaterial.BILLBOARD_PARTICLES]. - - - Each particle's angular velocity will vary along this [CurveTexture]. - - - Angular velocity randomness ratio. - - - Particle animation offset. - - - Each particle's animation offset will vary along this [CurveTexture]. - - - Animation offset randomness ratio. - - - Particle animation speed. - - - Each particle's animation speed will vary along this [CurveTexture]. - - - Animation speed randomness ratio. - - - Each particle's initial color. If the [Particles2D]'s [code]texture[/code] is defined, it will be multiplied by this color. To have particle display color in a [SpatialMaterial] make sure to set [member SpatialMaterial.vertex_color_use_as_albedo] to [code]true[/code]. - - - Each particle's initial color will vary along this [GradientTexture] (multiplied with [member color]). - - - Each particle's color will vary along this [GradientTexture] over its lifetime (multiplied with [member color]). - - - The rate at which particles lose velocity. - - - Damping will vary along this [CurveTexture]. - - - Damping randomness ratio. - - - Unit vector specifying the particles' emission direction. - - - The box's extents if [code]emission_shape[/code] is set to [constant EMISSION_SHAPE_BOX]. - - - Particle color will be modulated by color determined by sampling this texture at the same point as the [member emission_point_texture]. - - - Particle velocity and rotation will be set by sampling this texture at the same point as the [member emission_point_texture]. Used only in [constant EMISSION_SHAPE_DIRECTED_POINTS]. Can be created automatically from mesh or node by selecting "Create Emission Points from Mesh/Node" under the "Particles" tool in the toolbar. - - - The number of emission points if [code]emission_shape[/code] is set to [constant EMISSION_SHAPE_POINTS] or [constant EMISSION_SHAPE_DIRECTED_POINTS]. - - - Particles will be emitted at positions determined by sampling this texture at a random position. Used with [constant EMISSION_SHAPE_POINTS] and [constant EMISSION_SHAPE_DIRECTED_POINTS]. Can be created automatically from mesh or node by selecting "Create Emission Points from Mesh/Node" under the "Particles" tool in the toolbar. - - - The axis of the ring when using the emitter [constant EMISSION_SHAPE_RING]. - - - The height of the ring when using the emitter [constant EMISSION_SHAPE_RING]. - - - The inner radius of the ring when using the emitter [constant EMISSION_SHAPE_RING]. - - - The radius of the ring when using the emitter [constant EMISSION_SHAPE_RING]. - - - Particles will be emitted inside this region. Use [enum EmissionShape] constants for values. - - - The sphere's radius if [code]emission_shape[/code] is set to [constant EMISSION_SHAPE_SPHERE]. - - - Align Y axis of particle with the direction of its velocity. - - - If [code]true[/code], particles will not move on the z axis. - - - If [code]true[/code], particles rotate around Y axis by [member angle]. - - - Amount of [member spread] along the Y axis. - - - Gravity applied to every particle. - - - Initial hue variation applied to each particle. - - - Each particle's hue will vary along this [CurveTexture]. - - - Hue variation randomness ratio. - - - Initial velocity magnitude for each particle. Direction comes from [member spread] and the node's orientation. - - - Initial velocity randomness ratio. - - - Particle lifetime randomness ratio. - - - Linear acceleration applied to each particle in the direction of motion. - - - Each particle's linear acceleration will vary along this [CurveTexture]. - - - Linear acceleration randomness ratio. - - - Orbital velocity applied to each particle. Makes the particles circle around origin. Specified in number of full rotations around origin per second. - [b]Note:[/b] Only available when [member flag_disable_z] is [code]true[/code]. - - - Each particle's orbital velocity will vary along this [CurveTexture]. - - - Orbital velocity randomness ratio. - - - Radial acceleration applied to each particle. Makes particle accelerate away from origin. - - - Each particle's radial acceleration will vary along this [CurveTexture]. - - - Radial acceleration randomness ratio. - - - Initial scale applied to each particle. - - - Each particle's scale will vary along this [CurveTexture]. - - - Scale randomness ratio. - - - Each particle's initial direction range from [code]+spread[/code] to [code]-spread[/code] degrees. - - - Tangential acceleration applied to each particle. Tangential acceleration is perpendicular to the particle's velocity giving the particles a swirling motion. - - - Each particle's tangential acceleration will vary along this [CurveTexture]. - - - Tangential acceleration randomness ratio. - - - Trail particles' color will vary along this [GradientTexture]. - - - Emitter will emit [code]amount[/code] divided by [code]trail_divisor[/code] particles. The remaining particles will be used as trail(s). - - - Trail particles' size will vary along this [CurveTexture]. - - - - - Use with [method set_param], [method set_param_randomness], and [method set_param_texture] to set initial velocity properties. - - - Use with [method set_param], [method set_param_randomness], and [method set_param_texture] to set angular velocity properties. - - - Use with [method set_param], [method set_param_randomness], and [method set_param_texture] to set orbital velocity properties. - - - Use with [method set_param], [method set_param_randomness], and [method set_param_texture] to set linear acceleration properties. - - - Use with [method set_param], [method set_param_randomness], and [method set_param_texture] to set radial acceleration properties. - - - Use with [method set_param], [method set_param_randomness], and [method set_param_texture] to set tangential acceleration properties. - - - Use with [method set_param], [method set_param_randomness], and [method set_param_texture] to set damping properties. - - - Use with [method set_param], [method set_param_randomness], and [method set_param_texture] to set angle properties. - - - Use with [method set_param], [method set_param_randomness], and [method set_param_texture] to set scale properties. - - - Use with [method set_param], [method set_param_randomness], and [method set_param_texture] to set hue variation properties. - - - Use with [method set_param], [method set_param_randomness], and [method set_param_texture] to set animation speed properties. - - - Use with [method set_param], [method set_param_randomness], and [method set_param_texture] to set animation offset properties. - - - Represents the size of the [enum Parameter] enum. - - - Use with [method set_flag] to set [member flag_align_y]. - - - Use with [method set_flag] to set [member flag_rotate_y]. - - - Use with [method set_flag] to set [member flag_disable_z]. - - - Represents the size of the [enum Flags] enum. - - - All particles will be emitted from a single point. - - - Particles will be emitted in the volume of a sphere. - - - Particles will be emitted in the volume of a box. - - - Particles will be emitted at a position determined by sampling a random point on the [member emission_point_texture]. Particle color will be modulated by [member emission_color_texture]. - - - Particles will be emitted at a position determined by sampling a random point on the [member emission_point_texture]. Particle velocity and rotation will be set based on [member emission_normal_texture]. Particle color will be modulated by [member emission_color_texture]. - - - Particles will be emitted in a ring or cylinder. - - - Represents the size of the [enum EmissionShape] enum. - - - diff --git a/doc/classes/Path.xml b/doc/classes/Path.xml deleted file mode 100644 index 1a06331..0000000 --- a/doc/classes/Path.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - Contains a [Curve3D] path for [PathFollow] nodes to follow. - - - Can have [PathFollow] child nodes moving along the [Curve3D]. See [PathFollow] for more information on the usage. - Note that the path is considered as relative to the moved nodes (children of [PathFollow]). As such, the curve should usually start with a zero vector [code](0, 0, 0)[/code]. - - - - - - - - A [Curve3D] describing the path. - - - - - - Emitted when the [member curve] changes. - - - - - - diff --git a/doc/classes/PathFollow.xml b/doc/classes/PathFollow.xml deleted file mode 100644 index f548b4e..0000000 --- a/doc/classes/PathFollow.xml +++ /dev/null @@ -1,56 +0,0 @@ - - - - Point sampler for a [Path]. - - - This node takes its parent [Path], and returns the coordinates of a point within it, given a distance from the first vertex. - It is useful for making other nodes follow a path, without coding the movement pattern. For that, the nodes must be children of this node. The descendant nodes will then move accordingly when setting an offset in this node. - - - - - - - - If [code]true[/code], the position between two cached points is interpolated cubically, and linearly otherwise. - The points along the [Curve3D] of the [Path] are precomputed before use, for faster calculations. The point at the requested offset is then calculated interpolating between two adjacent cached points. This may present a problem if the curve makes sharp turns, as the cached points may not follow the curve closely enough. - There are two answers to this problem: either increase the number of cached points and increase memory consumption, or make a cubic interpolation between two points at the cost of (slightly) slower calculations. - - - The node's offset along the curve. - - - If [code]true[/code], any offset outside the path's length will wrap around, instead of stopping at the ends. Use it for cyclic paths. - - - The distance from the first vertex, measured in 3D units along the path. This sets this node's position to a point within the path. - - - Allows or forbids rotation on one or more axes, depending on the [enum RotationMode] constants being used. - - - The distance from the first vertex, considering 0.0 as the first vertex and 1.0 as the last. This is just another way of expressing the offset within the path, as the offset supplied is multiplied internally by the path's length. - - - The node's offset perpendicular to the curve. - - - - - Forbids the PathFollow to rotate. - - - Allows the PathFollow to rotate in the Y axis only. - - - Allows the PathFollow to rotate in both the X, and Y axes. - - - Allows the PathFollow to rotate in any axis. - - - Uses the up vector information in a [Curve3D] to enforce orientation. This rotation mode requires the [Path]'s [member Curve3D.up_vector_enabled] property to be set to [code]true[/code]. - - - diff --git a/doc/classes/Performance.xml b/doc/classes/Performance.xml index 9eec8ac..f5bcb15 100644 --- a/doc/classes/Performance.xml +++ b/doc/classes/Performance.xml @@ -107,46 +107,10 @@ Number of islands in the 2D physics engine. - - Number of active [RigidBody] and [VehicleBody] nodes in the game. - - - Number of collision pairs in the 3D physics engine. - - - Number of islands in the 3D physics engine. - - + Output latency of the [AudioServer].Equivalent to calling [method AudioServer.get_output_latency], it is not recommended to call this every frame. - - Number of active navigation maps in the [NavigationServer3D]. This also includes the two empty default navigation maps created by World2D and World3D. - - - Number of active navigation regions in the [NavigationServer3D]. - - - Number of active navigation agents processing avoidance in the [NavigationServer3D]. - - - Number of active navigation links in the [NavigationServer3D]. - - - Number of navigation mesh polygons in the [NavigationServer3D]. - - - Number of navigation mesh polygon edges in the [NavigationServer3D]. - - - Number of navigation mesh polygon edges that were merged due to edge key overlap in the [NavigationServer3D]. - - - Number of polygon edges that are considered connected by edge proximity [NavigationServer3D]. - - - Number of navigation mesh polygon edges that could not be merged in the [NavigationServer3D]. The edges still may be connected by edge proximity or with links. - - + Represents the size of the [enum Monitor] enum. diff --git a/doc/classes/PhysicsBody.xml b/doc/classes/PhysicsBody.xml deleted file mode 100644 index 21d478b..0000000 --- a/doc/classes/PhysicsBody.xml +++ /dev/null @@ -1,37 +0,0 @@ - - - - Base class for all objects affected by physics in 3D space. - - - PhysicsBody is an abstract base class for implementing a physics body. All *Body types inherit from it. - [b]Warning:[/b] With a non-uniform scale this node will probably not function as expected. Please make sure to keep its scale uniform (i.e. the same on all axes), and change the size(s) of its collision shape(s) instead. - - - $DOCS_URL/tutorials/physics/physics_introduction.md - - - - - - - Adds a body to the list of bodies that this body can't collide with. - - - - - - Returns an array of nodes that were added as collision exceptions for this body. - - - - - - - Removes a body from the list of bodies that this body can't collide with. - - - - - - diff --git a/doc/classes/PhysicsDirectBodyState.xml b/doc/classes/PhysicsDirectBodyState.xml deleted file mode 100644 index 10f4d3c..0000000 --- a/doc/classes/PhysicsDirectBodyState.xml +++ /dev/null @@ -1,195 +0,0 @@ - - - - Direct access object to a physics body in the [PhysicsServer]. - - - Provides direct access to a physics body in the [PhysicsServer], allowing safe changes to physics properties. This object is passed via the direct state callback of rigid/character bodies, and is intended for changing the direct state of that body. See [method RigidBody._integrate_forces]. - - - $DOCS_URL/tutorials/physics/physics_introduction.md - $DOCS_URL/tutorials/physics/ray-casting.md - - - - - - - Adds a constant directional force without affecting rotation. - This is equivalent to [code]add_force(force, Vector3(0,0,0))[/code]. - - - - - - - - Adds a positioned force to the body. Both the force and the offset from the body origin are in global coordinates. - - - - - - - Adds a constant rotational force without affecting position. - - - - - - - Applies a single directional impulse without affecting rotation. - This is equivalent to [code]apply_impulse(Vector3(0, 0, 0), impulse)[/code]. - - - - - - - - Applies a positioned impulse to the body. An impulse is time-independent! Applying an impulse every frame would result in a framerate-dependent force. For this reason it should only be used when simulating one-time impacts. The position uses the rotation of the global coordinate system, but is centered at the object's origin. - - - - - - - Apply a torque impulse (which will be affected by the body mass and shape). This will rotate the body around the vector [code]j[/code] passed as parameter. - - - - - - - Returns the collider's [RID]. - - - - - - - Returns the collider's object id. - - - - - - - Returns the collider object. - - - - - - - Returns the contact position in the collider. - - - - - - - Returns the collider's shape index. - - - - - - - Returns the linear velocity vector at the collider's contact point. - - - - - - Returns the number of contacts this body has with other bodies. - [b]Note:[/b] By default, this returns 0 unless bodies are configured to monitor contacts. See [member RigidBody.contact_monitor]. - - - - - - - Impulse created by the contact. Only implemented for Bullet physics. - - - - - - - Returns the local normal at the contact point. - - - - - - - Returns the local position of the contact point. - - - - - - - Returns the local shape index of the collision. - - - - - - Returns the current state of the space, useful for queries. - - - - - - - Returns the body's velocity at the given relative position, including both translation and rotation. - - - - - - Calls the built-in force integration code. - - - - - - The body's rotational velocity in axis-angle format. The magnitude of the vector is the rotation rate in [i]radians[/i] per second. - - - - - The inverse of the inertia of the body. - - - The inverse of the mass of the body. - - - The body's linear velocity in units per second. - - - - - If [code]true[/code], this body is currently sleeping (not active). - - - The timestep (delta) used for the simulation. - - - The rate at which the body stops rotating, if there are not any other forces moving it. - - - The total gravity vector being currently applied to this body. - - - The rate at which the body stops moving, if there are not any other forces moving it. - - - The body's transformation matrix. - - - - - diff --git a/doc/classes/PhysicsDirectSpaceState.xml b/doc/classes/PhysicsDirectSpaceState.xml deleted file mode 100644 index 6bdabc0..0000000 --- a/doc/classes/PhysicsDirectSpaceState.xml +++ /dev/null @@ -1,100 +0,0 @@ - - - - Direct access object to a space in the [PhysicsServer]. - - - Direct access object to a space in the [PhysicsServer]. It's used mainly to do queries against objects and areas residing in a given space. - - - $DOCS_URL/tutorials/physics/physics_introduction.md - $DOCS_URL/tutorials/physics/ray-casting.md - - - - - - - - Checks how far a [Shape] can move without colliding. All the parameters for the query, including the shape, are supplied through a [PhysicsShapeQueryParameters] object. - Returns an array with the safe and unsafe proportions (between 0 and 1) of the motion. The safe proportion is the maximum fraction of the motion that can be made without a collision. The unsafe proportion is the minimum fraction of the distance that must be moved for a collision. If no collision is detected a result of [code][1.0, 1.0][/code] will be returned. - [b]Note:[/b] Any [Shape]s that the shape is already colliding with e.g. inside of, will be ignored. Use [method collide_shape] to determine the [Shape]s that the shape is already colliding with. - - - - - - - - Checks the intersections of a shape, given through a [PhysicsShapeQueryParameters] object, against the space. The resulting array contains a list of points where the shape intersects another. Like with [method intersect_shape], the number of returned results can be limited to save processing time. - - - - - - - Checks the intersections of a shape, given through a [PhysicsShapeQueryParameters] object, against the space. If it collides with more than one shape, the nearest one is selected. The returned object is a dictionary containing the following fields: - [code]collider_id[/code]: The colliding object's ID. - [code]linear_velocity[/code]: The colliding object's velocity [Vector3]. If the object is an [Area], the result is [code](0, 0, 0)[/code]. - [code]normal[/code]: The object's surface normal at the intersection point. - [code]point[/code]: The intersection point. - [code]rid[/code]: The intersecting object's [RID]. - [code]shape[/code]: The shape index of the colliding shape. - If the shape did not intersect anything, then an empty dictionary is returned instead. - - - - - - - - - - - - Checks whether a point is inside any solid shape. The shapes the point is inside of are returned in an array containing dictionaries with the following fields: - [code]collider[/code]: The colliding object. - [code]collider_id[/code]: The colliding object's ID. - [code]rid[/code]: The intersecting object's [RID]. - [code]shape[/code]: The shape index of the colliding shape. - The number of intersections can be limited with the [code]max_results[/code] parameter, to reduce the processing time. - Additionally, the method can take an [code]exclude[/code] array of objects or [RID]s that are to be excluded from collisions, a [code]collision_mask[/code] bitmask representing the physics layers to check in, or booleans to determine if the ray should collide with [PhysicsBody]s or [Area]s, respectively. - - - - - - - - - - - - Intersects a ray in a given space. The returned object is a dictionary with the following fields: - [code]collider[/code]: The colliding object. - [code]collider_id[/code]: The colliding object's ID. - [code]normal[/code]: The object's surface normal at the intersection point. - [code]position[/code]: The intersection point. - [code]rid[/code]: The intersecting object's [RID]. - [code]shape[/code]: The shape index of the colliding shape. - If the ray did not intersect anything, then an empty dictionary is returned instead. - Additionally, the method can take an [code]exclude[/code] array of objects or [RID]s that are to be excluded from collisions, a [code]collision_mask[/code] bitmask representing the physics layers to check in, or booleans to determine if the ray should collide with [PhysicsBody]s or [Area]s, respectively. - - - - - - - - Checks the intersections of a shape, given through a [PhysicsShapeQueryParameters] object, against the space. The intersected shapes are returned in an array containing dictionaries with the following fields: - [code]collider[/code]: The colliding object. - [code]collider_id[/code]: The colliding object's ID. - [code]rid[/code]: The intersecting object's [RID]. - [code]shape[/code]: The shape index of the colliding shape. - The number of intersections can be limited with the [code]max_results[/code] parameter, to reduce the processing time. - - - - - - diff --git a/doc/classes/PhysicsServer.xml b/doc/classes/PhysicsServer.xml deleted file mode 100644 index e3ece03..0000000 --- a/doc/classes/PhysicsServer.xml +++ /dev/null @@ -1,1305 +0,0 @@ - - - - Server interface for low-level physics access. - - - PhysicsServer is the server responsible for all 3D physics. It can create many kinds of physics objects, but does not insert them on the node tree. - - - - - - - - - - - - Adds a shape to the area, along with a transform matrix. Shapes are usually referenced by their index, so you should track which shape has a given index. - - - - - - - - Assigns the area to a descendant of [Object], so it can exist in the node tree. - - - - - - - Removes all shapes from an area. It does not delete the shapes, so they can be reassigned later. - - - - - - Creates an [Area]. - - - - - - - Gets the instance ID of the object the area is assigned to. - - - - - - - - Returns an area parameter value. A list of available parameters is on the [enum AreaParameter] constants. - - - - - - - - Returns the [RID] of the nth shape of an area. - - - - - - - Returns the number of shapes assigned to an area. - - - - - - - - Returns the transform matrix of a shape within an area. - - - - - - - Returns the space assigned to the area. - - - - - - - Returns the space override mode for the area. - - - - - - - Returns the transform matrix for an area. - - - - - - - If [code]true[/code], area collides with rays. - - - - - - - - Removes a shape from an area. It does not delete the shape, so it can be reassigned later. - - - - - - - - - - - - - - - - Assigns the area to one or many physics layers. - - - - - - - - Sets which physics layers the area will monitor. - - - - - - - - - - - - - - - - - - - - - - - - Sets the value for an area parameter. A list of available parameters is on the [enum AreaParameter] constants. - - - - - - - - Sets object pickable with rays. - - - - - - - - - Substitutes a given area shape by another. The old shape is selected by its index, the new one by its [RID]. - - - - - - - - - - - - - - - - - Sets the transform matrix for an area shape. - - - - - - - - Assigns a space to the area. - - - - - - - - Sets the space override mode for the area. The modes are described in the [enum AreaSpaceOverrideMode] constants. - - - - - - - - Sets the transform matrix for an area. - - - - - - - - - - - - - - - Adds a body to the list of bodies exempt from collisions. - - - - - - - - - - - - - - - - - - Adds a shape to the body, along with a transform matrix. Shapes are usually referenced by their index, so you should track which shape has a given index. - - - - - - - - - - - - - - - - - - - - - - - Gives the body a push at a [code]position[/code] in the direction of the [code]impulse[/code]. - - - - - - - - Gives the body a push to rotate it. - - - - - - - - Assigns the area to a descendant of [Object], so it can exist in the node tree. - - - - - - - Removes all shapes from a body. - - - - - - - - Creates a physics body. The first parameter can be any value from [enum BodyMode] constants, for the type of body created. Additionally, the body can be created in sleeping state to save processing time. - - - - - - - Returns the physics layer or layers a body belongs to. - - - - - - - Returns the physics layer or layers a body can collide with. - - - - - - - Returns the [PhysicsDirectBodyState] of the body. Returns [code]null[/code] if the body is destroyed or removed from the physics space. - - - - - - - - - - - - - Returns the maximum contacts that can be reported. See [method body_set_max_contacts_reported]. - - - - - - - Returns the body mode. - - - - - - - Gets the instance ID of the object the area is assigned to. - - - - - - - - Returns the value of a body parameter. A list of available parameters is on the [enum BodyParameter] constants. - - - - - - - - Returns the [RID] of the nth shape of a body. - - - - - - - Returns the number of shapes assigned to a body. - - - - - - - - Returns the transform matrix of a body shape. - - - - - - - Returns the [RID] of the space assigned to a body. - - - - - - - - Returns a body state. - - - - - - - - - - - - - - If [code]true[/code], the continuous collision detection mode is enabled. - - - - - - - Returns whether a body uses a callback function to calculate its own physics (see [method body_set_force_integration_callback]). - - - - - - - If [code]true[/code], the body can be detected by rays. - - - - - - - - Removes a body from the list of bodies exempt from collisions. - Continuous collision detection tries to predict where a moving body will collide, instead of moving it and correcting its movement if it collided. - - - - - - - - Removes a shape from a body. The shape is not deleted, so it can be reused afterwards. - - - - - - - - - - - - - - - - Sets an axis velocity. The velocity in the given vector axis will be set as the given vector length. This is useful for jumping behavior. - - - - - - - - Sets the physics layer or layers a body belongs to. - - - - - - - - Sets the physics layer or layers a body can collide with. - - - - - - - - If [code]true[/code], the continuous collision detection mode is enabled. - Continuous collision detection tries to predict where a moving body will collide, instead of moving it and correcting its movement if it collided. - - - - - - - - - - - - - - - - - - - - - - - - Sets the maximum contacts to report. Bodies can keep a log of the contacts with other bodies, this is enabled by setting the maximum amount of contacts reported to a number greater than 0. - - - - - - - - Sets the body mode, from one of the [enum BodyMode] constants. - - - - - - - - Sets whether a body uses a callback function to calculate its own physics (see [method body_set_force_integration_callback]). - - - - - - - - - Sets a body parameter. A list of available parameters is on the [enum BodyParameter] constants. - - - - - - - - Sets the body pickable with rays if [code]enabled[/code] is set. - - - - - - - - - Substitutes a given body shape by another. The old shape is selected by its index, the new one by its [RID]. - - - - - - - - - - - - - - - - - Sets the transform matrix for a body shape. - - - - - - - - Assigns a space to the body (see [method space_create]). - - - - - - - - - Sets a body state (see [enum BodyState] constants). - - - - - - - - - - - - - Returns [code]true[/code] if a collision would result from moving in the given direction from a given point in space. [PhysicsTestMotionResult] can be passed to return additional information in. - - - - - - - - Gets a cone_twist_joint parameter (see [enum ConeTwistJointParam] constants). - - - - - - - - - Sets a cone_twist_joint parameter (see [enum ConeTwistJointParam] constants). - - - - - - - Destroys any of the objects created by PhysicsServer. If the [RID] passed is not one of the objects that can be created by PhysicsServer, an error will be sent to the console. - - - - - - - - - Gets a generic_6_DOF_joint flag (see [enum G6DOFJointAxisFlag] constants). - - - - - - - - - Gets a generic_6_DOF_joint parameter (see [enum G6DOFJointAxisParam] constants). - - - - - - - - - - Sets a generic_6_DOF_joint flag (see [enum G6DOFJointAxisFlag] constants). - - - - - - - - - - Sets a generic_6_DOF_joint parameter (see [enum G6DOFJointAxisParam] constants). - - - - - - - Returns an Info defined by the [enum ProcessInfo] input given. - - - - - - - - Gets a hinge_joint flag (see [enum HingeJointFlag] constants). - - - - - - - - Gets a hinge_joint parameter (see [enum HingeJointParam]). - - - - - - - - - Sets a hinge_joint flag (see [enum HingeJointFlag] constants). - - - - - - - - - Sets a hinge_joint parameter (see [enum HingeJointParam] constants). - - - - - - - - - - Creates a [ConeTwistJoint]. - - - - - - - - - - Creates a [Generic6DOFJoint]. - - - - - - - - - - Creates a [HingeJoint]. - - - - - - - - - - Creates a [PinJoint]. - - - - - - - - - - Creates a [SliderJoint]. - - - - - - - Gets the priority value of the Joint. - - - - - - - Returns the type of the Joint. - - - - - - - - Sets the priority value of the Joint. - - - - - - - Returns position of the joint in the local space of body a of the joint. - - - - - - - Returns position of the joint in the local space of body b of the joint. - - - - - - - - Gets a pin_joint parameter (see [enum PinJointParam] constants). - - - - - - - - Sets position of the joint in the local space of body a of the joint. - - - - - - - - Sets position of the joint in the local space of body b of the joint. - - - - - - - - - Sets a pin_joint parameter (see [enum PinJointParam] constants). - - - - - - - Activates or deactivates the 3D physics engine. - - - - - - - Sets the amount of iterations for calculating velocities of colliding bodies. The greater the amount of iterations, the more accurate the collisions will be. However, a greater amount of iterations requires more CPU power, which can decrease performance. The default value is [code]8[/code]. - [b]Note:[/b] Only has an effect when using the GodotPhysics engine, not the default Bullet physics engine. - - - - - - - Creates a shape of a type from [enum ShapeType]. Does not assign it to a body or an area. To do so, you must use [method area_set_shape] or [method body_set_shape]. - - - - - - - Returns the shape data. - - - - - - - Returns the type of shape (see [enum ShapeType] constants). - - - - - - - - Sets the shape data that defines its shape and size. The data to be passed depends on the kind of shape created [method shape_get_type]. - - - - - - - - Gets a slider_joint parameter (see [enum SliderJointParam] constants). - - - - - - - - - Gets a slider_joint parameter (see [enum SliderJointParam] constants). - - - - - - Creates a space. A space is a collection of parameters for the physics engine that can be assigned to an area or a body. It can be assigned to an area with [method area_set_space], or to a body with [method body_set_space]. - - - - - - - Returns the state of a space, a [PhysicsDirectSpaceState]. This object can be used to make collision/intersection queries. - - - - - - - - Returns the value of a space parameter. - - - - - - - Returns whether the space is active. - - - - - - - - Marks a space as active. It will not have an effect, unless it is assigned to an area or body. - - - - - - - - - Sets the value for a space parameter. A list of available parameters is on the [enum SpaceParameter] constants. - - - - - - The [Joint] is a [PinJoint]. - - - The [Joint] is a [HingeJoint]. - - - The [Joint] is a [SliderJoint]. - - - The [Joint] is a [ConeTwistJoint]. - - - The [Joint] is a [Generic6DOFJoint]. - - - The strength with which the pinned objects try to stay in positional relation to each other. - The higher, the stronger. - - - The strength with which the pinned objects try to stay in velocity relation to each other. - The higher, the stronger. - - - If above 0, this value is the maximum value for an impulse that this Joint puts on its ends. - - - The speed with which the two bodies get pulled together when they move in different directions. - - - The maximum rotation across the Hinge. - - - The minimum rotation across the Hinge. - - - The speed with which the rotation across the axis perpendicular to the hinge gets corrected. - - - - - The lower this value, the more the rotation gets slowed down. - - - Target speed for the motor. - - - Maximum acceleration for the motor. - - - If [code]true[/code], the Hinge has a maximum and a minimum rotation. - - - If [code]true[/code], a motor turns the Hinge. - - - The maximum difference between the pivot points on their X axis before damping happens. - - - The minimum difference between the pivot points on their X axis before damping happens. - - - A factor applied to the movement across the slider axis once the limits get surpassed. The lower, the slower the movement. - - - The amount of restitution once the limits are surpassed. The lower, the more velocityenergy gets lost. - - - The amount of damping once the slider limits are surpassed. - - - A factor applied to the movement across the slider axis as long as the slider is in the limits. The lower, the slower the movement. - - - The amount of restitution inside the slider limits. - - - The amount of damping inside the slider limits. - - - A factor applied to the movement across axes orthogonal to the slider. - - - The amount of restitution when movement is across axes orthogonal to the slider. - - - The amount of damping when movement is across axes orthogonal to the slider. - - - The upper limit of rotation in the slider. - - - The lower limit of rotation in the slider. - - - A factor applied to the all rotation once the limit is surpassed. - - - The amount of restitution of the rotation when the limit is surpassed. - - - The amount of damping of the rotation when the limit is surpassed. - - - A factor that gets applied to the all rotation in the limits. - - - The amount of restitution of the rotation in the limits. - - - The amount of damping of the rotation in the limits. - - - A factor that gets applied to the all rotation across axes orthogonal to the slider. - - - The amount of restitution of the rotation across axes orthogonal to the slider. - - - The amount of damping of the rotation across axes orthogonal to the slider. - - - Represents the size of the [enum SliderJointParam] enum. - - - Swing is rotation from side to side, around the axis perpendicular to the twist axis. - The swing span defines, how much rotation will not get corrected along the swing axis. - Could be defined as looseness in the [ConeTwistJoint]. - If below 0.05, this behavior is locked. - - - Twist is the rotation around the twist axis, this value defined how far the joint can twist. - Twist is locked if below 0.05. - - - The speed with which the swing or twist will take place. - The higher, the faster. - - - The ease with which the Joint twists, if it's too low, it takes more force to twist the joint. - - - Defines, how fast the swing- and twist-speed-difference on both sides gets synced. - - - The minimum difference between the pivot points' axes. - - - The maximum difference between the pivot points' axes. - - - A factor that gets applied to the movement across the axes. The lower, the slower the movement. - - - The amount of restitution on the axes movement. The lower, the more velocity-energy gets lost. - - - The amount of damping that happens at the linear motion across the axes. - - - The velocity that the joint's linear motor will attempt to reach. - - - The maximum force that the linear motor can apply while trying to reach the target velocity. - - - The minimum rotation in negative direction to break loose and rotate around the axes. - - - The minimum rotation in positive direction to break loose and rotate around the axes. - - - A factor that gets multiplied onto all rotations across the axes. - - - The amount of rotational damping across the axes. The lower, the more dampening occurs. - - - The amount of rotational restitution across the axes. The lower, the more restitution occurs. - - - The maximum amount of force that can occur, when rotating around the axes. - - - When correcting the crossing of limits in rotation across the axes, this error tolerance factor defines how much the correction gets slowed down. The lower, the slower. - - - Target speed for the motor at the axes. - - - Maximum acceleration for the motor at the axes. - - - If set, linear motion is possible within the given limits. - - - If set, rotational motion is possible. - - - If set, there is a rotational motor across these axes. - - - If set, there is a linear motor on this axis that targets a specific velocity. - - - The [Shape] is a [PlaneShape]. - - - The [Shape] is a [RayShape]. - - - The [Shape] is a [SphereShape]. - - - The [Shape] is a [BoxShape]. - - - The [Shape] is a [CapsuleShape]. - - - The [Shape] is a [CylinderShape]. - - - The [Shape] is a [ConvexPolygonShape]. - - - The [Shape] is a [ConcavePolygonShape]. - - - The [Shape] is a [HeightMapShape]. - - - This constant is used internally by the engine. Any attempt to create this kind of shape results in an error. - - - Constant to set/get gravity strength in an area. - - - Constant to set/get gravity vector/center in an area. - - - Constant to set/get whether the gravity vector of an area is a direction, or a center point. - - - Constant to set/get the falloff factor for point gravity of an area. The greater this value is, the faster the strength of gravity decreases with the square of distance. - - - This constant was used to set/get the falloff factor for point gravity. It has been superseded by [constant AREA_PARAM_GRAVITY_DISTANCE_SCALE]. - - - Constant to set/get the linear dampening factor of an area. - - - Constant to set/get the angular dampening factor of an area. - - - Constant to set/get the priority (order of processing) of an area. - - - This area does not affect gravity/damp. These are generally areas that exist only to detect collisions, and objects entering or exiting them. - - - This area adds its gravity/damp values to whatever has been calculated so far. This way, many overlapping areas can combine their physics to make interesting effects. - - - This area adds its gravity/damp values to whatever has been calculated so far. Then stops taking into account the rest of the areas, even the default one. - - - This area replaces any gravity/damp, even the default one, and stops taking into account the rest of the areas. - - - This area replaces any gravity/damp calculated so far, but keeps calculating the rest of the areas, down to the default one. - - - Constant for static bodies. - - - Constant for kinematic bodies. - - - Constant for rigid bodies. - - - Constant for rigid bodies in character mode. In this mode, a body can not rotate, and only its linear velocity is affected by physics. - - - Constant to set/get a body's bounce factor. - - - Constant to set/get a body's friction. - - - Constant to set/get a body's mass. - - - Constant to set/get a body's gravity multiplier. - - - Constant to set/get a body's linear dampening factor. - - - Constant to set/get a body's angular dampening factor. - - - Represents the size of the [enum BodyParameter] enum. - - - Constant to set/get the current transform matrix of the body. - - - Constant to set/get the current linear velocity of the body. - - - Constant to set/get the current angular velocity of the body. - - - Constant to sleep/wake up a body, or to get whether it is sleeping. - - - Constant to set/get whether the body can sleep. - - - The value of the first parameter and area callback function receives, when an object enters one of its shapes. - - - The value of the first parameter and area callback function receives, when an object exits one of its shapes. - - - Constant to get the number of objects that are not sleeping. - - - Constant to get the number of possible collisions. - - - Constant to get the number of space regions where a collision could occur. - - - Constant to set/get the maximum distance a pair of bodies has to move before their collision status has to be recalculated. - - - Constant to set/get the maximum distance a shape can be from another before they are considered separated. - - - Constant to set/get the maximum distance a shape can penetrate another shape before it is considered a collision. - - - Constant to set/get the threshold linear velocity of activity. A body marked as potentially inactive for both linear and angular velocity will be put to sleep after the time given. - - - Constant to set/get the threshold angular velocity of activity. A body marked as potentially inactive for both linear and angular velocity will be put to sleep after the time given. - - - Constant to set/get the maximum time of activity. A body marked as potentially inactive for both linear and angular velocity will be put to sleep after this time. - - - - - Constant to set/get the default solver bias for all physics constraints. A solver bias is a factor controlling how much two objects "rebound", after violating a constraint, to avoid leaving them in that state because of numerical imprecision. - - - - - - - - - - - - - - - diff --git a/doc/classes/PhysicsShapeQueryParameters.xml b/doc/classes/PhysicsShapeQueryParameters.xml deleted file mode 100644 index 90c3b54..0000000 --- a/doc/classes/PhysicsShapeQueryParameters.xml +++ /dev/null @@ -1,45 +0,0 @@ - - - - Parameters to be sent to a 3D shape physics query. - - - This class contains the shape and other parameters for 3D intersection/collision queries. - - - - - - - - - Sets the [Shape] that will be used for collision/intersection queries. - - - - - - If [code]true[/code], the query will take [Area]s into account. - - - If [code]true[/code], the query will take [PhysicsBody]s into account. - - - The physics layer(s) the query will take into account (as a bitmask). See [url=$DOCS_URL/tutorials/physics/physics_introduction.html#collision-layers-and-masks]Collision layers and masks[/url] in the documentation for more information. - - - The list of objects or object [RID]s that will be excluded from collisions. - - - The collision margin for the shape. - - - The queried shape's [RID]. See also [method set_shape]. - - - The queried shape's transform matrix. - - - - - diff --git a/doc/classes/PhysicsTestMotionResult.xml b/doc/classes/PhysicsTestMotionResult.xml deleted file mode 100644 index 78dbb8a..0000000 --- a/doc/classes/PhysicsTestMotionResult.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/doc/classes/PinJoint.xml b/doc/classes/PinJoint.xml deleted file mode 100644 index 09b089e..0000000 --- a/doc/classes/PinJoint.xml +++ /dev/null @@ -1,50 +0,0 @@ - - - - Pin joint for 3D PhysicsBodies. - - - Pin joint for 3D rigid bodies. It pins 2 bodies (rigid or static) together. See also [Generic6DOFJoint]. - - - - - - - - - Returns the value of the specified parameter. - - - - - - - - Sets the value of the specified parameter. - - - - - - The force with which the pinned objects stay in positional relation to each other. The higher, the stronger. - - - The force with which the pinned objects stay in velocity relation to each other. The higher, the stronger. - - - If above 0, this value is the maximum value for an impulse that this Joint produces. - - - - - The force with which the pinned objects stay in positional relation to each other. The higher, the stronger. - - - The force with which the pinned objects stay in velocity relation to each other. The higher, the stronger. - - - If above 0, this value is the maximum value for an impulse that this Joint produces. - - - diff --git a/doc/classes/PlaneShape.xml b/doc/classes/PlaneShape.xml deleted file mode 100644 index 58cd575..0000000 --- a/doc/classes/PlaneShape.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - Infinite plane shape for 3D collisions. - - - An infinite plane shape for 3D collisions. Note that the [Plane]'s normal matters; anything "below" the plane will collide with it. If the [PlaneShape] is used in a [PhysicsBody], it will cause colliding objects placed "below" it to teleport "above" the plane. - - - - - - - - The [Plane] used by the [PlaneShape] for collision. - - - - - diff --git a/doc/classes/PoolByteArray.xml b/doc/classes/PoolByteArray.xml index 436965f..bde14b2 100644 --- a/doc/classes/PoolByteArray.xml +++ b/doc/classes/PoolByteArray.xml @@ -46,13 +46,6 @@ - - - - - Returns a new [PoolByteArray] with the data compressed. Set the compression mode using one of [enum File.CompressionMode]'s constants. - - @@ -66,25 +59,6 @@ Returns the number of times an element is in the array. - - - - - - Returns a new [PoolByteArray] with the data decompressed. Set [code]buffer_size[/code] to the size of the uncompressed data. Set the compression mode using one of [enum File.CompressionMode]'s constants. - - - - - - - - Returns a new [PoolByteArray] with the data decompressed. Set the compression mode using one of [enum File.CompressionMode]'s constants. [b]This method only accepts gzip and deflate compression modes.[/b] - This method is potentially slower than [code]decompress[/code], as it may have to re-allocate its output buffer multiple times while decompressing, where as [code]decompress[/code] knows its output buffer size from the beginning. - - GZIP has a maximal compression ratio of 1032:1, meaning it's very possible for a small compressed payload to decompress to a potentially very large output. To guard against this, you may provide a maximum size this function is allowed to allocate in bytes via [code]max_output_size[/code]. Passing -1 will allow for unbounded output. If any positive value is passed, and the decompression exceeds that amount in bytes, then an error will be returned. - - diff --git a/doc/classes/Portal.xml b/doc/classes/Portal.xml deleted file mode 100644 index d47f30b..0000000 --- a/doc/classes/Portal.xml +++ /dev/null @@ -1,50 +0,0 @@ - - - - Portal nodes are used to enable visibility between [Room]s. - - - [Portal]s are a special type of [MeshInstance] that allow the portal culling system to 'see' from one room to the next. They often correspond to doors and windows in level geometry. By only allowing [Camera]s to see through portals, this allows the system to cull out all the objects in rooms that cannot be seen through portals. This is a form of [b]occlusion culling[/b], and can greatly increase performance. - There are some limitations to the form of portals: - They must be single sided convex polygons, and usually you would orientate their front faces [b]outward[/b] from the [Room] they are placed in. The vertices should be positioned on a single plane (although their positioning does not have to be perfect). - There is no need to place an opposite portal in an adjacent room, links are made two-way automatically. - - - - - - - - - - Sets individual points. - [b]Note:[/b] This function will not resize the point array. Set [member points] to set the number of points. - - - - - - This is a shortcut for setting the linked [Room] in the name of the [Portal] (the name is used during conversion). - - - The points defining the shape of the [Portal] polygon (which should be convex). - These are defined in 2D, with [code]0,0[/code] being the origin of the [Portal] node's [member Spatial.global_transform]. - [b]Note:[/b] These raw points are sanitized for winding order internally. - - - Visibility through [Portal]s can be turned on and off at runtime - this is useful for having closable doors. - - - Some objects are so big that they may be present in more than one [Room] ('sprawling'). As we often don't want objects that *just* breach the edges to be assigned to neighbouring rooms, you can assign an extra margin through the [Portal] to allow objects to breach without sprawling. - - - Portals default to being two way - see through in both directions, however you can make them one way, visible from the source room only. - - - In most cases you will want to use the default [Portal] margin in your portals (this is set in the [RoomManager]). - If you want to override this default, set this value to [code]false[/code], and the local [member portal_margin] will take effect. - - - - - diff --git a/doc/classes/Position3D.xml b/doc/classes/Position3D.xml deleted file mode 100644 index 61b6a3b..0000000 --- a/doc/classes/Position3D.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - Generic 3D position hint for editing. - - - Generic 3D position hint for editing. It's just like a plain [Spatial], but it displays as a cross in the 3D editor at all times. - - - - - - - - diff --git a/doc/classes/ProceduralSky.xml b/doc/classes/ProceduralSky.xml deleted file mode 100644 index 6dddd65..0000000 --- a/doc/classes/ProceduralSky.xml +++ /dev/null @@ -1,84 +0,0 @@ - - - - Type of [Sky] that is generated procedurally based on user input parameters. - - - ProceduralSky provides a way to create an effective background quickly by defining procedural parameters for the sun, the sky and the ground. The sky and ground are very similar, they are defined by a color at the horizon, another color, and finally an easing curve to interpolate between these two colors. Similarly, the sun is described by a position in the sky, a color, and an easing curve. However, the sun also defines a minimum and maximum angle, these two values define at what distance the easing curve begins and ends from the sun, and thus end up defining the size of the sun in the sky. - The ProceduralSky is updated on the CPU after the parameters change. It is stored in a texture and then displayed as a background in the scene. This makes it relatively unsuitable for real-time updates during gameplay. However, with a small enough texture size, it can still be updated relatively frequently, as it is updated on a background thread when multi-threading is available. - - - - - - - - Color of the ground at the bottom. - - - How quickly the [member ground_horizon_color] fades into the [member ground_bottom_color]. - - - Amount of energy contribution from the ground. - - - Color of the ground at the horizon. - - - How quickly the [member sky_horizon_color] fades into the [member sky_top_color]. - - - Amount of energy contribution from the sky. - - - Color of the sky at the horizon. - - - Color of the sky at the top. - - - Distance from center of sun where it fades out completely. - - - Distance from sun where it goes from solid to starting to fade. - - - The sun's color. - - - How quickly the sun fades away between [member sun_angle_min] and [member sun_angle_max]. - - - Amount of energy contribution from the sun. - - - The sun's height using polar coordinates. - - - The direction of the sun using polar coordinates. - - - Size of [Texture] that the ProceduralSky will generate. The size is set using [enum TextureSize]. - - - - - Sky texture will be 256x128. - - - Sky texture will be 512x256. - - - Sky texture will be 1024x512. This is the default size. - - - Sky texture will be 2048x1024. - - - Sky texture will be 4096x2048. - - - Represents the size of the [enum TextureSize] enum. - - - diff --git a/doc/classes/ProjectSettings.xml b/doc/classes/ProjectSettings.xml index 5603ec9..e008f8b 100644 --- a/doc/classes/ProjectSettings.xml +++ b/doc/classes/ProjectSettings.xml @@ -91,17 +91,6 @@ Returns [code]true[/code] if a configuration value is present. - - - - - - - Loads the contents of the .pck or .zip file specified by [code]pack[/code] into the resource filesystem ([code]res://[/code]). Returns [code]true[/code] on success. - [b]Note:[/b] If a file from [code]pack[/code] shares the same path as a file already in the resource filesystem, any attempts to load that file will use the file from [code]pack[/code] unless [code]replace_files[/code] is set to [code]false[/code]. - [b]Note:[/b] The optional [code]offset[/code] parameter can be used to specify the offset in bytes to the start of the resource pack. This is only supported for .pck files. - - @@ -168,33 +157,13 @@ - - - - Comma-separated list of custom Android modules (which must have been built in the Android export templates) using their Java package path, e.g. [code]"org/godotengine/godot/MyCustomSingleton,com/example/foo/FrenchFriesFactory"[/code]. [b]Note:[/b] Since Godot 3.2.2, the [code]org/godotengine/godot/GodotPaymentV3[/code] module was deprecated and replaced by the [code]GodotPayment[/code] plugin which should be enabled in the Android export preset under [code]Plugins[/code] section. The singleton to access in code was also renamed to [code]GodotPayment[/code]. - - Background color for the boot splash. - - - If [code]true[/code], scale the boot splash image to the full window size (preserving the aspect ratio) when the engine starts. If [code]false[/code], the engine will leave it at the default pixel size. - - - Path to an image used as the boot splash. If left empty, the default Godot Engine splash will be displayed instead. - [b]Note:[/b] Only effective if [member application/boot_splash/show_image] is [code]true[/code]. - Minimum boot splash display time (in milliseconds). It is not recommended to set too high values for this setting. - - If [code]true[/code], displays the image specified in [member application/boot_splash/image] when the engine starts. If [code]false[/code], only displays the plain color specified in [member application/boot_splash/bg_color]. - - - If [code]true[/code], applies linear filtering when scaling the image (recommended for high-resolution artwork). If [code]false[/code], uses nearest-neighbor interpolation (recommended for pixel art). - This user directory is used for storing persistent data ([code]user://[/code] filesystem). If left empty, [code]user://[/code] resolves to a project-specific folder in Godot's own configuration folder (see [method OS.get_user_data_dir]). If a custom directory name is defined, this name will be used instead and appended to the system-specific user data directory (same parent folder as the Godot configuration folder documented in [method OS.get_user_data_dir]). The [member application/config/use_custom_user_dir] setting must be enabled for this to take effect. @@ -318,21 +287,6 @@ Setting to hardcode audio delay when playing video. Best to leave this untouched unless you know what you are doing. - - The default compression level for gzip. Affects compressed scenes and resources. Higher levels result in smaller files at the cost of compression speed. Decompression speed is mostly unaffected by the compression level. [code]-1[/code] uses the default gzip compression level, which is identical to [code]6[/code] but could change in the future due to underlying zlib updates. - - - The default compression level for Zlib. Affects compressed scenes and resources. Higher levels result in smaller files at the cost of compression speed. Decompression speed is mostly unaffected by the compression level. [code]-1[/code] uses the default gzip compression level, which is identical to [code]6[/code] but could change in the future due to underlying zlib updates. - - - The default compression level for Zstandard. Affects compressed scenes and resources. Higher levels result in smaller files at the cost of compression speed. Decompression speed is mostly unaffected by the compression level. - - - Enables [url=https://github.com/facebook/zstd/releases/tag/v1.3.2]long-distance matching[/url] in Zstandard. - - - Largest size limit (in power of 2) allowed when compressing using long-distance matching with Zstandard. Higher values can result in better compression, but will require more memory when compressing and decompressing. - If [code]true[/code], displays getters and setters in autocompletion results in the script editor. This setting is meant to be used when porting old projects (Godot 2), as using member variables is the preferred style from Godot 3 onwards. @@ -453,33 +407,6 @@ Print more information to standard output when running. It displays information such as memory leaks, which scenes and resources are being loaded, etc. - - Color of the avoidance agents radius, visible when "Visible Avoidance" is enabled in the Debug menu. - - - If enabled, displays avoidance agents radius when "Visible Avoidance" is enabled in the Debug menu. - - - If enabled, displays avoidance obstacles radius when "Visible Avoidance" is enabled in the Debug menu. - - - If enabled, displays static avoidance obstacles when "Visible Avoidance" is enabled in the Debug menu. - - - Color of the avoidance obstacles radius, visible when "Visible Avoidance" is enabled in the Debug menu. - - - Color of the static avoidance obstacles edges when their vertices are winded in order to push agents in, visible when "Visible Avoidance" is enabled in the Debug menu. - - - Color of the static avoidance obstacles edges when their vertices are winded in order to push agents out, visible when "Visible Avoidance" is enabled in the Debug menu. - - - Color of the static avoidance obstacles faces when their vertices are winded in order to push agents in, visible when "Visible Avoidance" is enabled in the Debug menu. - - - Color of the static avoidance obstacles faces when their vertices are winded in order to push agents out, visible when "Visible Avoidance" is enabled in the Debug menu. - Color of the contact points between collision shapes, visible when "Visible Collision Shapes" is enabled in the Debug menu. @@ -492,60 +419,6 @@ Color of the collision shapes, visible when "Visible Collision Shapes" is enabled in the Debug menu. - - Color to display enabled navigation agent paths when an agent has debug enabled. - - - Rasterized size (pixel) used to render navigation agent path points when an agent has debug enabled. - - - Color to display edge connections between navigation regions, visible when "Visible Navigation" is enabled in the Debug menu. - - - If enabled, displays navigation agent paths when an agent has debug enabled. - - - If enabled, displays navigation agent paths through geometry when an agent has debug enabled. - - - If enabled, displays edge connections between navigation regions when "Visible Navigation" is enabled in the Debug menu. - - - If enabled, displays edge connections between navigation regions through geometry when "Visible Navigation" is enabled in the Debug menu. - - - If enabled, displays navigation mesh polygon edges when "Visible Navigation" is enabled in the Debug menu. - - - If enabled, displays navigation mesh polygon edges through geometry when "Visible Navigation" is enabled in the Debug menu. - - - If enabled, colorizes each navigation mesh polygon face with a random color when "Visible Navigation" is enabled in the Debug menu. - - - If enabled, displays navigation link connections when "Visible Navigation" is enabled in the Debug menu. - - - If enabled, displays navigation link connections through geometry when "Visible Navigation" is enabled in the Debug menu. - - - Color to display enabled navigation mesh polygon edges, visible when "Visible Navigation" is enabled in the Debug menu. - - - Color to display disabled navigation mesh polygon edges, visible when "Visible Navigation" is enabled in the Debug menu. - - - Color to display enabled navigation mesh polygon faces, visible when "Visible Navigation" is enabled in the Debug menu. - - - Color to display disabled navigation mesh polygon faces, visible when "Visible Navigation" is enabled in the Debug menu. - - - Color to use to display navigation link connections, visible when "Visible Navigation" is enabled in the Debug menu. - - - Color to use to display disabled navigation link connections, visible when "Visible Navigation" is enabled in the Debug menu. - Color of the curve path geometry, visible when "Visible Paths" is enabled in the Debug menu. @@ -653,72 +526,6 @@ Text-based file extensions to include in the script editor's "Find in Files" feature. You can add e.g. [code]tscn[/code] if you wish to also parse your scene files, especially if you use built-in scripts which are serialized in the scene files. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Default value for [member ScrollContainer.scroll_deadzone], which will be used for all [ScrollContainer]s unless overridden. @@ -814,102 +621,6 @@ If [code]true[/code], sends touch input events when clicking or dragging the mouse. - - Optional name for the 2D navigation layer 1. If left empty, the layer will display as "Layer 1". - - - Optional name for the 2D navigation layer 10. If left empty, the layer will display as "Layer 10". - - - Optional name for the 2D navigation layer 11. If left empty, the layer will display as "Layer 11". - - - Optional name for the 2D navigation layer 12. If left empty, the layer will display as "Layer 12". - - - Optional name for the 2D navigation layer 13. If left empty, the layer will display as "Layer 13". - - - Optional name for the 2D navigation layer 14. If left empty, the layer will display as "Layer 14". - - - Optional name for the 2D navigation layer 15. If left empty, the layer will display as "Layer 15". - - - Optional name for the 2D navigation layer 16. If left empty, the layer will display as "Layer 16". - - - Optional name for the 2D navigation layer 17. If left empty, the layer will display as "Layer 17". - - - Optional name for the 2D navigation layer 18. If left empty, the layer will display as "Layer 18". - - - Optional name for the 2D navigation layer 19. If left empty, the layer will display as "Layer 19". - - - Optional name for the 2D navigation layer 2. If left empty, the layer will display as "Layer 2". - - - Optional name for the 2D navigation layer 20. If left empty, the layer will display as "Layer 20". - - - Optional name for the 2D navigation layer 21. If left empty, the layer will display as "Layer 21". - - - Optional name for the 2D navigation layer 22. If left empty, the layer will display as "Layer 22". - - - Optional name for the 2D navigation layer 23. If left empty, the layer will display as "Layer 23". - - - Optional name for the 2D navigation layer 24. If left empty, the layer will display as "Layer 24". - - - Optional name for the 2D navigation layer 25. If left empty, the layer will display as "Layer 25". - - - Optional name for the 2D navigation layer 26. If left empty, the layer will display as "Layer 26". - - - Optional name for the 2D navigation layer 27. If left empty, the layer will display as "Layer 27". - - - Optional name for the 2D navigation layer 28. If left empty, the layer will display as "Layer 28". - - - Optional name for the 2D navigation layer 29. If left empty, the layer will display as "Layer 29". - - - Optional name for the 2D navigation layer 3. If left empty, the layer will display as "Layer 3". - - - Optional name for the 2D navigation layer 30. If left empty, the layer will display as "Layer 30". - - - Optional name for the 2D navigation layer 31. If left empty, the layer will display as "Layer 31". - - - Optional name for the 2D navigation layer 32. If left empty, the layer will display as "Layer 32". - - - Optional name for the 2D navigation layer 4. If left empty, the layer will display as "Layer 4". - - - Optional name for the 2D navigation layer 5. If left empty, the layer will display as "Layer 5". - - - Optional name for the 2D navigation layer 6. If left empty, the layer will display as "Layer 6". - - - Optional name for the 2D navigation layer 7. If left empty, the layer will display as "Layer 7". - - - Optional name for the 2D navigation layer 8. If left empty, the layer will display as "Layer 8". - - - Optional name for the 2D navigation layer 9. If left empty, the layer will display as "Layer 9". - Optional name for the 2D physics layer 1. @@ -1066,354 +777,6 @@ Optional name for the 2D render layer 9. - - Optional name for the 3D navigation layer 1. If left empty, the layer will display as "Layer 1". - - - Optional name for the 3D navigation layer 10. If left empty, the layer will display as "Layer 10". - - - Optional name for the 3D navigation layer 11. If left empty, the layer will display as "Layer 11". - - - Optional name for the 3D navigation layer 12. If left empty, the layer will display as "Layer 12". - - - Optional name for the 3D navigation layer 13. If left empty, the layer will display as "Layer 13". - - - Optional name for the 3D navigation layer 14. If left empty, the layer will display as "Layer 14". - - - Optional name for the 3D navigation layer 15. If left empty, the layer will display as "Layer 15". - - - Optional name for the 3D navigation layer 16. If left empty, the layer will display as "Layer 16". - - - Optional name for the 3D navigation layer 17. If left empty, the layer will display as "Layer 17". - - - Optional name for the 3D navigation layer 18. If left empty, the layer will display as "Layer 18". - - - Optional name for the 3D navigation layer 19. If left empty, the layer will display as "Layer 19". - - - Optional name for the 3D navigation layer 2. If left empty, the layer will display as "Layer 2". - - - Optional name for the 3D navigation layer 20. If left empty, the layer will display as "Layer 20". - - - Optional name for the 3D navigation layer 21. If left empty, the layer will display as "Layer 21". - - - Optional name for the 3D navigation layer 22. If left empty, the layer will display as "Layer 22". - - - Optional name for the 3D navigation layer 23. If left empty, the layer will display as "Layer 23". - - - Optional name for the 3D navigation layer 24. If left empty, the layer will display as "Layer 24". - - - Optional name for the 3D navigation layer 25. If left empty, the layer will display as "Layer 25". - - - Optional name for the 3D navigation layer 26. If left empty, the layer will display as "Layer 26". - - - Optional name for the 3D navigation layer 27. If left empty, the layer will display as "Layer 27". - - - Optional name for the 3D navigation layer 28. If left empty, the layer will display as "Layer 28". - - - Optional name for the 3D navigation layer 29. If left empty, the layer will display as "Layer 29". - - - Optional name for the 3D navigation layer 3. If left empty, the layer will display as "Layer 3". - - - Optional name for the 3D navigation layer 30. If left empty, the layer will display as "Layer 30". - - - Optional name for the 3D navigation layer 31. If left empty, the layer will display as "Layer 31". - - - Optional name for the 3D navigation layer 32. If left empty, the layer will display as "Layer 32". - - - Optional name for the 3D navigation layer 4. If left empty, the layer will display as "Layer 4". - - - Optional name for the 3D navigation layer 5. If left empty, the layer will display as "Layer 5". - - - Optional name for the 3D navigation layer 6. If left empty, the layer will display as "Layer 6". - - - Optional name for the 3D navigation layer 7. If left empty, the layer will display as "Layer 7". - - - Optional name for the 3D navigation layer 8. If left empty, the layer will display as "Layer 8". - - - Optional name for the 3D navigation layer 9. If left empty, the layer will display as "Layer 9". - - - Optional name for the 3D physics layer 1. - - - Optional name for the 3D physics layer 10. - - - Optional name for the 3D physics layer 11. - - - Optional name for the 3D physics layer 12. - - - Optional name for the 3D physics layer 13. - - - Optional name for the 3D physics layer 14. - - - Optional name for the 3D physics layer 15. - - - Optional name for the 3D physics layer 16. - - - Optional name for the 3D physics layer 17. - - - Optional name for the 3D physics layer 18. - - - Optional name for the 3D physics layer 19. - - - Optional name for the 3D physics layer 2. - - - Optional name for the 3D physics layer 20. - - - Optional name for the 3D physics layer 21. - - - Optional name for the 3D physics layer 22. - - - Optional name for the 3D physics layer 23. - - - Optional name for the 3D physics layer 24. - - - Optional name for the 3D physics layer 25. - - - Optional name for the 3D physics layer 26. - - - Optional name for the 3D physics layer 27. - - - Optional name for the 3D physics layer 28. - - - Optional name for the 3D physics layer 29. - - - Optional name for the 3D physics layer 3. - - - Optional name for the 3D physics layer 30. - - - Optional name for the 3D physics layer 31. - - - Optional name for the 3D physics layer 32. - - - Optional name for the 3D physics layer 4. - - - Optional name for the 3D physics layer 5. - - - Optional name for the 3D physics layer 6. - - - Optional name for the 3D physics layer 7. - - - Optional name for the 3D physics layer 8. - - - Optional name for the 3D physics layer 9. - - - Optional name for the 3D render layer 1. - - - Optional name for the 3D render layer 10. - - - Optional name for the 3D render layer 11. - - - Optional name for the 3D render layer 12. - - - Optional name for the 3D render layer 13. - - - Optional name for the 3D render layer 14. - - - Optional name for the 3D render layer 15. - - - Optional name for the 3D render layer 16. - - - Optional name for the 3D render layer 17. - - - Optional name for the 3D render layer 18. - - - Optional name for the 3D render layer 19. - - - Optional name for the 3D render layer 2. - - - Optional name for the 3D render layer 20. - - - Optional name for the 3D render layer 3. - - - Optional name for the 3D render layer 4. - - - Optional name for the 3D render layer 5. - - - Optional name for the 3D render layer 6. - - - Optional name for the 3D render layer 7. - - - Optional name for the 3D render layer 8. - - - Optional name for the 3D render layer 9. - - - Optional name for the navigation avoidance layer 1. If left empty, the layer will display as "Layer 1". - - - Optional name for the navigation avoidance layer 10. If left empty, the layer will display as "Layer 10". - - - Optional name for the navigation avoidance layer 11. If left empty, the layer will display as "Layer 11". - - - Optional name for the navigation avoidance layer 12. If left empty, the layer will display as "Layer 12". - - - Optional name for the navigation avoidance layer 13. If left empty, the layer will display as "Layer 13". - - - Optional name for the navigation avoidance layer 14. If left empty, the layer will display as "Layer 14". - - - Optional name for the navigation avoidance layer 15. If left empty, the layer will display as "Layer 15". - - - Optional name for the navigation avoidance layer 16. If left empty, the layer will display as "Layer 16". - - - Optional name for the navigation avoidance layer 17. If left empty, the layer will display as "Layer 17". - - - Optional name for the navigation avoidance layer 18. If left empty, the layer will display as "Layer 18". - - - Optional name for the navigation avoidance layer 19. If left empty, the layer will display as "Layer 19". - - - Optional name for the navigation avoidance layer 2. If left empty, the layer will display as "Layer 2". - - - Optional name for the navigation avoidance layer 20. If left empty, the layer will display as "Layer 20". - - - Optional name for the navigation avoidance layer 21. If left empty, the layer will display as "Layer 21". - - - Optional name for the navigation avoidance layer 22. If left empty, the layer will display as "Layer 22". - - - Optional name for the navigation avoidance layer 23. If left empty, the layer will display as "Layer 23". - - - Optional name for the navigation avoidance layer 24. If left empty, the layer will display as "Layer 24". - - - Optional name for the navigation avoidance layer 25. If left empty, the layer will display as "Layer 25". - - - Optional name for the navigation avoidance layer 26. If left empty, the layer will display as "Layer 26". - - - Optional name for the navigation avoidance layer 27. If left empty, the layer will display as "Layer 27". - - - Optional name for the navigation avoidance layer 28. If left empty, the layer will display as "Layer 28". - - - Optional name for the navigation avoidance layer 29. If left empty, the layer will display as "Layer 29". - - - Optional name for the navigation avoidance layer 3. If left empty, the layer will display as "Layer 3". - - - Optional name for the navigation avoidance layer 30. If left empty, the layer will display as "Layer 30". - - - Optional name for the navigation avoidance layer 31. If left empty, the layer will display as "Layer 31". - - - Optional name for the navigation avoidance layer 32. If left empty, the layer will display as "Layer 32". - - - Optional name for the navigation avoidance layer 4. If left empty, the layer will display as "Layer 4". - - - Optional name for the navigation avoidance layer 5. If left empty, the layer will display as "Layer 5". - - - Optional name for the navigation avoidance layer 6. If left empty, the layer will display as "Layer 6". - - - Optional name for the navigation avoidance layer 7. If left empty, the layer will display as "Layer 7". - - - Optional name for the navigation avoidance layer 8. If left empty, the layer will display as "Layer 8". - - - Optional name for the navigation avoidance layer 9. If left empty, the layer will display as "Layer 9". - The locale to fall back to if a translation isn't available in a given language. If left empty, [code]en[/code] (English) will be used. @@ -1440,53 +803,6 @@ This is used by servers when used in multi-threading mode (servers and visual). RIDs are preallocated to avoid stalling the server requesting them on threads. If servers get stalled too often when loading resources in a thread, increase this number. - - Default cell size for 2D navigation maps. See [method Navigation2DServer.map_set_cell_size]. - - - Default edge connection margin for 2D navigation maps. See [method Navigation2DServer.map_set_edge_connection_margin]. - - - Default link connection radius for 2D navigation maps. See [method NavigationServer2D.map_set_link_connection_radius]. - - - - - If enabled 2D navigation regions will use edge connections to connect with other navigation regions within proximity of the navigation map edge connection margin. This setting only affects World2D default navigation maps. - - - Default cell height for 3D navigation maps. See [method NavigationServer.map_set_cell_height]. - - - Default cell size for 3D navigation maps. See [method NavigationServer.map_set_cell_size]. - - - Default edge connection margin for 3D navigation maps. See [method NavigationServer.map_set_edge_connection_margin]. - - - Default link connection radius for 3D navigation maps. See [method NavigationServer3D.map_set_link_connection_radius]. - - - Default map up vector for 3D navigation maps. See [method NavigationServer.map_set_up]. - - - - - If enabled 3D navigation regions will use edge connections to connect with other navigation regions within proximity of the navigation map edge connection margin. This setting only affects World3D default navigation maps. - - - If enabled and avoidance calculations use multiple threads the threads run with high priority. - - - If enabled the avoidance calculations use multiple threads. - - - Sets which navigation mesh generator to use to bake navigation meshes and parse source geometry from the scene. - "DEFAULT" and "GodotNavigationMeshGenerator" are the same, as there is currently no alternative navigation mesh generator implemented. - - - If [code]true[/code] the navigation mesh generator uses ThreadPool for baking navigation meshes. - Maximum amount of characters allowed to send as output from the debugger. Over this value, content is dropped with the message [code]"output overflow, print less text!"[/code]. This helps not to stall the debugger connection. @@ -1505,30 +821,6 @@ Timeout (in seconds) for connection attempts using TCP. - - Maximum size (in kiB) for the [WebSocketClient] input buffer. - - - Maximum number of concurrent input packets for [WebSocketClient]. - - - Maximum size (in kiB) for the [WebSocketClient] output buffer. - - - Maximum number of concurrent output packets for [WebSocketClient]. - - - Maximum size (in kiB) for the [WebSocketServer] input buffer. - - - Maximum number of concurrent input packets for [WebSocketServer]. - - - Maximum size (in kiB) for the [WebSocketServer] output buffer. - - - Maximum number of concurrent output packets for [WebSocketServer]. - Amount of read ahead used by remote filesystem. Higher values decrease the effects of latency at the cost of higher bandwidth usage. @@ -1606,48 +898,14 @@ Enables the use of bounding volume hierarchy instead of hash grid for 2D physics spatial partitioning. This may give better performance. - - The default angular damp in 3D. - [b]Note:[/b] Good values are in the range [code]0[/code] to [code]1[/code]. At value [code]0[/code] objects will keep moving with the same velocity. Values greater than [code]1[/code] will aim to reduce the velocity to [code]0[/code] in less than a second e.g. a value of [code]2[/code] will aim to reduce the velocity to [code]0[/code] in half a second. A value equal to or greater than the physics frame rate ([member ProjectSettings.physics/common/physics_ticks_per_second], [code]60[/code] by default) will bring the object to a stop in one iteration. - - - The default gravity strength in 3D (in meters per second squared). - [b]Note:[/b] This property is only read when the project starts. To change the default gravity at runtime, use the following code sample: - [codeblock] - # Set the default gravity strength to 9.8. - PhysicsServer.area_set_param(get_viewport().find_world_3d().get_space(), PhysicsServer.AREA_PARAM_GRAVITY, 9.8) - [/codeblock] - - - The default gravity direction in 3D. - [b]Note:[/b] This property is only read when the project starts. To change the default gravity vector at runtime, use the following code sample: - [codeblock] - # Set the default gravity direction to `Vector3(0, -1, 0)`. - PhysicsServer.area_set_param(get_viewport().find_world_3d().get_space(), PhysicsServer.AREA_PARAM_GRAVITY_VECTOR, Vector3(0, -1, 0)) - [/codeblock] - - - The default linear damp in 3D. - [b]Note:[/b] Good values are in the range [code]0[/code] to [code]1[/code]. At value [code]0[/code] objects will keep moving with the same velocity. Values greater than [code]1[/code] will aim to reduce the velocity to [code]0[/code] in less than a second e.g. a value of [code]2[/code] will aim to reduce the velocity to [code]0[/code] in half a second. A value equal to or greater than the physics frame rate ([member ProjectSettings.physics/common/physics_ticks_per_second], [code]60[/code] by default) will bring the object to a stop in one iteration. - - - Sets which physics engine to use for 3D physics. - "DEFAULT" is currently the [url=https://bulletphysics.org]Bullet[/url] physics engine. The "GodotPhysics" engine is still supported as an alternative. - - - - - If [code]true[/code], smooths out collision with trimesh shapes ([ConcavePolygonShape]) by telling the Bullet physics engine to generate internal edge information for every trimesh shape created. [b]Note:[/b] Only effective if [member physics/3d/physics_engine] is set to [code]DEFAULT[/code] or [code]Bullet[/code], [i]not[/i] [code]GodotPhysics[/code]. - - Enables [member Viewport.physics_object_picking] on the root viewport. @@ -1657,10 +915,6 @@ - During pause, picking only considers collision objects immune to pause, sending input events and enter/exit callbacks to them as expected. If disabled, the legacy behavior is used, which consists in queuing the picking input events during pause (so nodes won't get them) and flushing that queue on resume, against the state of the 2D/3D world at that point. - - If [code]true[/code], the renderer will interpolate the transforms of physics objects between the last two transforms, such that smooth motion is seen when physics ticks do not coincide with rendered frames. - [b]Note:[/b] When moving objects to new positions (rather than the usual physics motion) you may want to temporarily turn off interpolation to prevent a visible glitch. You can do this using the [method Node.reset_physics_interpolation] function. - Controls how much physics ticks are synchronized with real time. For 0 or less, the ticks are synchronized. Such values are recommended for network games, where clock synchronization matters. Higher values cause higher deviation of in-game clock and real clock, but allows smoothing out framerate jitters. The default value of 0.5 should be fine for most; values above 2 could cause the game to react to dropped frames with a noticeable delay and are not recommended. [b]Note:[/b] For best results, when using a custom physics interpolation solution, the physics jitter fix should be disabled by setting [member physics/common/physics_jitter_fix] to [code]0[/code]. @@ -1672,36 +926,6 @@ [b]Note:[/b] This property is only read when the project starts. To change the physics FPS at runtime, set [member Engine.physics_ticks_per_second] instead. [b]Note:[/b] Only 8 physics ticks may be simulated per rendered frame at most. If more than 8 physics ticks have to be simulated per rendered frame to keep up with rendering, the game will appear to slow down (even if [code]delta[/code] is used consistently in physics calculations). Therefore, it is recommended not to increase [member physics/common/physics_ticks_per_second] above 240. Otherwise, the game will slow down when the rendering framerate goes below 30 FPS. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [b]Experimental.[/b] Calls [code]glBufferData[/code] with NULL data prior to uploading batching data. This may not be necessary but can be used for safety. [b]Note:[/b] Use with care. You are advised to leave this as default for exports. A non-default setting that works better on your machine may adversely affect performance for end users. @@ -1789,9 +1013,6 @@ Default background clear color. Overridable per [Viewport] using its [Environment3D]. See [member Environment3D.background_mode] and [member Environment3D.background_color] in particular. To change this default color programmatically, use [method RenderingServer.set_default_clear_color]. - - [Environment3D] that will be used as a fallback environment in case a scene does not specify its own environment. The default environment is loaded in at scene load time regardless of whether you have set an environment or not. If you do not rely on the fallback environment, it is best to delete [code]default_env.tres[/code], or to specify a different default environment here. - The use of half-float vertex compression may be producing rendering errors on some platforms (especially iOS). These have been seen particularly in particles. Disabling half-float may resolve these problems. @@ -1845,9 +1066,6 @@ Max index buffer size for drawing polygons. Any polygon bigger than this will not work. - - Max buffer size for drawing immediate objects (ImmediateGeometry nodes). Nodes using more than this size will not work. - Shaders have a time variable that constantly increases. At some point, it needs to be rolled back to zero to avoid precision errors on shader animations. This setting specifies when (in seconds). @@ -1912,12 +1130,6 @@ If [code]true[/code], performs a previous depth pass before rendering materials. This increases performance in scenes with high overdraw, when complex materials and lighting are used. - - The directional shadow's size in pixels. Higher values will result in sharper shadows, at the cost of performance. The value will be rounded up to the nearest power of 2. This setting can be changed at run-time; the change will be applied immediately. - - - Lower-end override for [member rendering/quality/directional_shadow/size] on mobile devices, due to performance concerns or driver support. - The video driver to use ("GLES2" or "GLES3"). [b]Note:[/b] The backend in use can be overridden at runtime via the [code]--video-driver[/code] command line argument, or by the [member rendering/quality/driver/fallback_to_gles2] option if the target system does not support GLES3 and falls back to GLES2. In such cases, this property is not updated, so use [method OS.get_current_video_driver] to query it at run-time. @@ -1957,12 +1169,6 @@ Lower-end override for [member rendering/quality/intended_usage/framebuffer_allocation] on mobile devices, due to performance concerns or driver support. - - Size of the atlas used by reflection probes. A larger size can result in higher visual quality, while a smaller size will be faster and take up less memory. - - - Number of subdivisions to use for the reflection atlas. A higher number lowers the quality of each atlas, but allows you to use more. - If [code]true[/code], uses a high amount of samples to create blurred variants of reflection probes and panorama backgrounds (sky). Those blurred variants are used by rough materials. @@ -2003,27 +1209,6 @@ If [code]true[/code], enables new physical light attenuation for [OmniLight]s and [SpotLight]s. This results in more realistic lighting appearance with a very small performance cost. When physical light attenuation is enabled, lights will appear to be darker as a result of the new attenuation formula. This can be compensated by adjusting the lights' energy or attenuation values. Changes to this setting will only be applied upon restarting the application. - - Size for cubemap into which the shadow is rendered before being copied into the shadow atlas. A higher number can result in higher resolution shadows when used with a higher [member rendering/quality/shadow_atlas/size]. Setting higher than a quarter of the [member rendering/quality/shadow_atlas/size] will not result in a perceptible increase in visual quality. - - - Subdivision quadrant size for shadow mapping. See shadow mapping documentation. - - - Subdivision quadrant size for shadow mapping. See shadow mapping documentation. - - - Subdivision quadrant size for shadow mapping. See shadow mapping documentation. - - - Subdivision quadrant size for shadow mapping. See shadow mapping documentation. - - - Size for shadow atlas (used for OmniLights and SpotLights). The value will be rounded up to the nearest power of 2. See shadow mapping documentation. - - - Lower-end override for [member rendering/quality/shadow_atlas/size] on mobile devices, due to performance concerns or driver support. - Shadow filter mode. Higher-quality settings result in smoother shadows that flicker less when moving. "Disabled" is the fastest option, but also has the lowest quality. "PCF5" is smoother but is also slower. "PCF13" is the smoothest option, but is also the slowest. [b]Note:[/b] When using the GLES2 backend, the "PCF13" option actually uses 16 samples to emulate linear filtering in the shader. This results in a shadow appearance similar to the one produced by the GLES3 backend. @@ -2041,19 +1226,11 @@ See also [member rendering/quality/skinning/force_software_skinning]. [b]Note:[/b] When the software skinning fallback is triggered, custom vertex shaders will behave in a different way, because the bone transform will be already applied to the modelview matrix. - - Additional expansion applied to object bounds in the 3D rendering bounding volume hierarchy. This can reduce BVH processing at the cost of a slightly reduced accuracy. - The default value will work well in most situations. A value of 0.0 will turn this optimization off, and larger values may work better for larger, faster moving objects. - [b]Note:[/b] Used only if [member ProjectSettings.rendering/quality/spatial_partitioning/use_bvh] is enabled. - The rendering octree balance can be changed to favor smaller ([code]0[/code]), or larger ([code]1[/code]) branches. Larger branches can increase performance significantly in some projects. [b]Note:[/b] Not used if [member ProjectSettings.rendering/quality/spatial_partitioning/use_bvh] is enabled. - - Enables the use of bounding volume hierarchy instead of octree for rendering spatial partitioning. This may give better performance. - Thread model for rendering. Rendering on a thread can vastly improve performance, but synchronizing to the main thread can cause a bit more jitter. diff --git a/doc/classes/Prop2DDataMeshData.xml b/doc/classes/Prop2DDataMeshData.xml deleted file mode 100644 index 980394e..0000000 --- a/doc/classes/Prop2DDataMeshData.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/doc/classes/Prop2DDataSprite.xml b/doc/classes/Prop2DDataSprite.xml deleted file mode 100644 index 835dc49..0000000 --- a/doc/classes/Prop2DDataSprite.xml +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/doc/classes/ProximityGroup.xml b/doc/classes/ProximityGroup.xml deleted file mode 100644 index b9eb018..0000000 --- a/doc/classes/ProximityGroup.xml +++ /dev/null @@ -1,74 +0,0 @@ - - - - General-purpose 3D proximity detection node. - - - General-purpose proximity detection node. [ProximityGroup] can be used for [i]approximate[/i] distance checks, which are faster than exact distance checks using [method Vector3.distance_to] or [method Vector3.distance_squared_to]. - [ProximityGroup] nodes are automatically grouped together, as long as they share the same [member group_name] and intersect with each other. By calling the [method broadcast], you can invoke a specified method with various parameters to all intersecting members. - [ProximityGroup] is cuboid-shaped and consists of a cluster of [Vector3] coordinates. The coordinates are automatically calculated by calling [member grid_radius]. To allow [ProximityGroup] to find its peers (and perform automatic grouping), you need to define its [member group_name] to a non-empty [String]. As soon as this object's shape intersects with another [ProximityGroup] object' shape, and both share the same [member group_name], they will belong together for as long as they intersect. - Since [ProximityGroup] doesn't rely the physics engine, you don't need to add any other node as a child (unlike [PhysicsBody]). - The [ProximityGroup] uses the [SceneTree] groups in the background by calling the method [method Node.add_to_group] internally. The [SceneTree] group names are constructed by combining the [member group_name] with its coordinates, which are calculated using the [member grid_radius] you defined beforehand. - [b]Example:[/b] A [ProximityGroup] node named [code]"PlanetEarth"[/code] at position [code]Vector3(6, 6, 6)[/code] with a [member group_name] set to [code]"planets"[/code] and a [member grid_radius] of [code]Vector3(1, 2, 3)[/code] will create the following [SceneTree] group names: - [codeblock] - - "planets|5|4|3" - - "planets|5|4|4" - - "planets|5|4|5" - - "planets|5|4|6" - - "planets|5|4|7" - - "planets|5|4|8" - - "planets|5|4|9" - - ... - [/codeblock] - If there is another [ProximityGroup] named [code]"PlanetMars"[/code] with group name [code]"planets"[/code], and one of its coordinates is [code]Vector3(5, 4, 7)[/code], it would normally create the [SceneTree] group called [code]"planets|5|4|7"[/code]. However, since this group name already exists, this [ProximityGroup] object will be [i]added[/i] to the existing one. [code]"PlanetEarth"[/code] is already in this group. As long as both nodes don't change their transform and stop intersecting (or exit the scene tree), they are grouped together. As long as this intersection exists, any call to [method broadcast] will affect [i]both[/i] [ProximityGroup] nodes. - There are 3 caveats to keep in mind when using [ProximityGroup]: - - The larger the grid radius, the more coordinates and the more [SceneTree] groups are created. This can have a performance impact if too many groups are created. - - If the [ProximityGroup] node is transformed in any way (or is removed from the scene tree), the groupings will have to be recalculated. This can also have a performance impact. - - If your [member grid_radius] is smaller than [code]Vector3(1, 1, 1)[/code], it will be rounded up to [code]Vector3(1, 1, 1)[/code]. Therefore, small grid radius values may lead to unwanted groupings. - [b]Note:[/b] [ProximityGroup] will be removed in Godot 4.0 in favor of more effective and faster [VisibilityNotifier] functionality. For most use cases, [method Vector3.distance_to] or [method Vector3.distance_squared_to] are fast enough too, especially if you call them less often using a [Timer] node. - - - - - - - - - - Calls on all intersecting [ProximityGroup] the given method and parameters. - If the [member dispatch_mode] is set to [constant MODE_PROXY] (the default), all calls are delegated to their respective parent [Node]. - - - - - - Specifies which node gets contacted on a call of method [method broadcast]. - - - The size of the space in 3D units. This also sets the amount of coordinates required to calculate whether two [ProximityGroup] nodes are intersecting or not. Smaller [member grid_radius] values can be used for more precise proximity checks at the cost of performance, since more groups will be created. - - - Specify the common group name, to let other [ProximityGroup] nodes know, if they should be auto-grouped with this node in case they intersect with each other. - For example, if you have a [ProximityGroup] node named [code]"Earth"[/code] and another called [code]"Mars"[/code], with both nodes having [code]"planet"[/code] as their [member group_name]. Give both planets a significantly larger [member grid_radius] than their actual radius, position them close enough and they'll be automatically grouped. - - - - - - - - Emitted when the user calls the [method broadcast] method and has set [member dispatch_mode] to [constant MODE_SIGNAL]. - The given method and its parameters are passed on to the listeners who connected to this signal of this object, as well as any [ProximityGroup] node this node is grouped together with. - [b]Note:[/b] This signal is [i]not[/i] emitted by default, as the default [member dispatch_mode] is [constant MODE_PROXY]. - - - - - - This [ProximityGroup]'s parent will be target of [method broadcast]. - - - This [ProximityGroup] will emit the [signal broadcast] [i]signal[/i] when calling the [method broadcast] [i]method[/i]. - - - diff --git a/doc/classes/RayCast.xml b/doc/classes/RayCast.xml deleted file mode 100644 index 2619dc9..0000000 --- a/doc/classes/RayCast.xml +++ /dev/null @@ -1,137 +0,0 @@ - - - - Query the closest object intersecting a ray. - - - A RayCast represents a line from its origin to its destination position, [code]cast_to[/code]. It is used to query the 3D space in order to find the closest object along the path of the ray. - RayCast can ignore some objects by adding them to the exception list via [code]add_exception[/code] or by setting proper filtering with collision layers and masks. - RayCast can be configured to report collisions with [Area]s ([member collide_with_areas]) and/or [PhysicsBody]s ([member collide_with_bodies]). - Only enabled raycasts will be able to query the space and report collisions. - RayCast calculates intersection every physics frame (see [Node]), and the result is cached so it can be used later until the next frame. If multiple queries are required between physics frames (or during the same frame), use [method force_raycast_update] after adjusting the raycast. - - - $DOCS_URL/tutorials/physics/ray-casting.md - https://godotengine.org/asset-library/asset/676 - - - - - - - Adds a collision exception so the ray does not report collisions with the specified node. - - - - - - - Adds a collision exception so the ray does not report collisions with the specified [RID]. - - - - - - Removes all collision exceptions for this ray. - - - - - - Updates the collision information for the ray. Use this method to update the collision information immediately instead of waiting for the next [code]_physics_process[/code] call, for example if the ray or its parent has changed state. - [b]Note:[/b] [code]enabled[/code] is not required for this to work. - - - - - - Returns the first object that the ray intersects, or [code]null[/code] if no object is intersecting the ray (i.e. [method is_colliding] returns [code]false[/code]). - - - - - - Returns the shape ID of the first object that the ray intersects, or [code]0[/code] if no object is intersecting the ray (i.e. [method is_colliding] returns [code]false[/code]). - - - - - - - Returns [code]true[/code] if the bit index passed is turned on. - [b]Note:[/b] Bit indices range from 0-19. - - - - - - Returns the normal of the intersecting object's shape at the collision point. - - - - - - Returns the collision point at which the ray intersects the closest object. - [b]Note:[/b] This point is in the [b]global[/b] coordinate system. - - - - - - Returns whether any object is intersecting with the ray's vector (considering the vector length). - - - - - - - Removes a collision exception so the ray does report collisions with the specified node. - - - - - - - Removes a collision exception so the ray does report collisions with the specified [RID]. - - - - - - - - Sets the bit index passed to the [code]value[/code] passed. - [b]Note:[/b] Bit indexes range from 0-19. - - - - - - The ray's destination point, relative to the RayCast's [code]position[/code]. - - - If [code]true[/code], collision with [Area]s will be reported. - - - If [code]true[/code], collision with [PhysicsBody]s will be reported. - - - The ray's collision mask. Only objects in at least one collision layer enabled in the mask will be detected. See [url=$DOCS_URL/tutorials/physics/physics_introduction.html#collision-layers-and-masks]Collision layers and masks[/url] in the documentation for more information. - - - The custom color to use to draw the shape in the editor and at run-time if [b]Visible Collision Shapes[/b] is enabled in the [b]Debug[/b] menu. This color will be highlighted at run-time if the [RayCast] is colliding with something. - If set to [code]Color(0.0, 0.0, 0.0)[/code] (by default), the color set in [member ProjectSettings.debug/shapes/collision/shape_color] is used. - - - If set to [code]1[/code], a line is used as the debug shape. Otherwise, a truncated pyramid is drawn to represent the [RayCast]. Requires [b]Visible Collision Shapes[/b] to be enabled in the [b]Debug[/b] menu for the debug shape to be visible at run-time. - - - If [code]true[/code], collisions will be reported. - - - If [code]true[/code], collisions will be ignored for this RayCast's immediate parent. - - - - - diff --git a/doc/classes/RayShape.xml b/doc/classes/RayShape.xml deleted file mode 100644 index 58e4902..0000000 --- a/doc/classes/RayShape.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - Ray shape for 3D collisions. - - - Ray shape for 3D collisions, which can be set into a [PhysicsBody] or [Area]. A ray is not really a collision body; instead, it tries to separate itself from whatever is touching its far endpoint. It's often useful for characters. - - - - - - - - The ray's length. - - - If [code]true[/code], allow the shape to return the correct normal. - - - - - diff --git a/doc/classes/ReflectionProbe.xml b/doc/classes/ReflectionProbe.xml deleted file mode 100644 index 5088261..0000000 --- a/doc/classes/ReflectionProbe.xml +++ /dev/null @@ -1,67 +0,0 @@ - - - - Captures its surroundings to create fast, accurate reflections from a given point. - - - Capture its surroundings as a dual paraboloid image, and stores versions of it with increasing levels of blur to simulate different material roughnesses. - The [ReflectionProbe] is used to create high-quality reflections at a low performance cost (when [member update_mode] is [constant UPDATE_ONCE]). [ReflectionProbe]s can be blended together and with the rest of the scene smoothly. [ReflectionProbe]s can also be combined with [GIProbe] and screen-space reflections ([member Environment3D.ss_reflections_enabled]) to get more accurate reflections in specific areas. [ReflectionProbe]s render all objects within their [member cull_mask], so updating them can be quite expensive. It is best to update them once with the important static objects and then leave them as-is. - [b]Note:[/b] Unlike [GIProbe], [ReflectionProbe]s only source their environment from a [WorldEnvironment3D] node. If you specify an [Environment3D] resource within a [Camera] node, it will be ignored by the [ReflectionProbe]. This can lead to incorrect lighting within the [ReflectionProbe]. - [b]Note:[/b] By default, Godot will only render 16 reflection probes. If you need more, increase the number of atlas subdivisions. This setting can be found in [member ProjectSettings.rendering/quality/reflections/atlas_subdiv]. - [b]Note:[/b] The GLES2 backend will only display two reflection probes at the same time for a single mesh. If possible, split up large meshes that span over multiple reflection probes into smaller ones. - - - $DOCS_URL/tutorials/3d/reflection_probes.md - - - - - - If [code]true[/code], enables box projection. This makes reflections look more correct in rectangle-shaped rooms by offsetting the reflection center depending on the camera's location. - [b]Note:[/b] To better fit rectangle-shaped rooms that are not aligned to the grid, you can rotate the [ReflectionProbe] node. - - - Sets the cull mask which determines what objects are drawn by this probe. Every [VisualInstance] with a layer included in this cull mask will be rendered by the probe. To improve performance, it is best to only include large objects which are likely to take up a lot of space in the reflection. - - - If [code]true[/code], computes shadows in the reflection probe. This makes the reflection probe slower to render; you may want to disable this if using the [constant UPDATE_ALWAYS] [member update_mode]. - - - The size of the reflection probe. The larger the extents the more space covered by the probe which will lower the perceived resolution. It is best to keep the extents only as large as you need them. - [b]Note:[/b] To better fit areas that are not aligned to the grid, you can rotate the [ReflectionProbe] node. - - - Defines the reflection intensity. Intensity modulates the strength of the reflection. - - - Sets the ambient light color to be used when this probe is set to [member interior_enable]. - - - Sets the contribution value for how much the reflection affects the ambient light for this reflection probe when set to [member interior_enable]. Useful so that ambient light matches the color of the room. - - - Sets the energy multiplier for this reflection probe's ambient light contribution when set to [member interior_enable]. - - - If [code]true[/code], reflections will ignore sky contribution. Ambient lighting is then controlled by the [code]interior_ambient_*[/code] properties. - - - The maximum distance away from the [ReflectionProbe] an object can be before it is culled. Decrease this to improve performance, especially when using the [constant UPDATE_ALWAYS] [member update_mode]. - [b]Note:[/b] The maximum reflection distance is always at least equal to the [member extents]. This means that decreasing [member max_distance] will not always cull objects from reflections, especially if the reflection probe's [member extents] are already large. - - - Sets the origin offset to be used when this [ReflectionProbe] is in [member box_projection] mode. This can be set to a non-zero value to ensure a reflection fits a rectangle-shaped room, while reducing the amount of objects that "get in the way" of the reflection. - - - Sets how frequently the [ReflectionProbe] is updated. Can be [constant UPDATE_ONCE] or [constant UPDATE_ALWAYS]. - - - - - Update the probe once on the next frame (recommended for most objects). The corresponding radiance map will be generated over the following six frames. This takes more time to update than [constant UPDATE_ALWAYS], but it has a lower performance cost and can result in higher-quality reflections. The ReflectionProbe is updated when its transform changes, but not when nearby geometry changes. You can force a [ReflectionProbe] update by moving the [ReflectionProbe] slightly in any direction. - - - Update the probe every frame. This provides better results for fast-moving dynamic objects (such as cars). However, it has a significant performance cost. Due to the cost, it's recommended to only use one ReflectionProbe with [constant UPDATE_ALWAYS] at most per scene. For all other use cases, use [constant UPDATE_ONCE]. - - - diff --git a/doc/classes/RemoteTransform.xml b/doc/classes/RemoteTransform.xml deleted file mode 100644 index 7ab9bf4..0000000 --- a/doc/classes/RemoteTransform.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - RemoteTransform pushes its own [Transform] to another [Spatial] derived Node in the scene. - - - RemoteTransform pushes its own [Transform] to another [Spatial] derived Node (called the remote node) in the scene. - It can be set to update another Node's position, rotation and/or scale. It can use either global or local coordinates. - - - - - - - - [RemoteTransform] caches the remote node. It may not notice if the remote node disappears; [method force_update_cache] forces it to update the cache again. - - - - - - The [NodePath] to the remote node, relative to the RemoteTransform's position in the scene. - - - If [code]true[/code], the remote node's position is updated. - - - If [code]true[/code], the remote node's rotation is updated. - - - If [code]true[/code], the remote node's scale is updated. - - - If [code]true[/code], global coordinates are used. If [code]false[/code], local coordinates are used. - - - - - diff --git a/doc/classes/RenderingServer.xml b/doc/classes/RenderingServer.xml index eedf124..2add984 100644 --- a/doc/classes/RenderingServer.xml +++ b/doc/classes/RenderingServer.xml @@ -38,92 +38,6 @@ Sets margin size, where black bars (or images, if [method black_bars_set_images] was used) are rendered. - - - - Creates a camera and adds it to the RenderingServer. It can be accessed with the RID that is returned. This RID will be used in all [code]camera_*[/code] RenderingServer functions. - Once finished with your RID, you will want to free the RID using the RenderingServer's [method free_rid] static method. - - - - - - - Prevents physics interpolation for the current physics tick. - This is useful when moving a [Camera] to a new location, to give an instantaneous change rather than interpolation from the previous location. - - - - - - - - Sets the cull mask associated with this camera. The cull mask describes which 3D layers are rendered by this camera. Equivalent to [member Camera.cull_mask]. - - - - - - - - Sets the environment used by this camera. Equivalent to [member Camera.environment]. - - - - - - - - - - - Sets camera to use frustum projection. This mode allows adjusting the [code]offset[/code] argument to create "tilted frustum" effects. - - - - - - - - Turns on and off physics interpolation for the [Camera]. - - - - - - - - - - Sets camera to use orthogonal projection, also known as orthographic projection. Objects remain the same size on the screen no matter how far away they are. - - - - - - - - - - Sets camera to use perspective projection. Objects on the screen becomes smaller when they are far away. - - - - - - - - Sets [Transform] of camera. - - - - - - - - If [code]true[/code], preserves the horizontal aspect ratio which is equivalent to [constant Camera.KEEP_WIDTH]. If [code]false[/code], preserves the vertical aspect ratio which is equivalent to [constant Camera.KEEP_HEIGHT]. - - @@ -315,14 +229,6 @@ Once finished with your RID, you will want to free the RID using the RenderingServer's [method free_rid] static method. - - - - - Prevents physics interpolation for the current physics tick. - This is useful when moving a canvas item to a new location, to give an instantaneous change rather than interpolation from the previous location. - - @@ -373,14 +279,6 @@ Sets the index for the [CanvasItem]. - - - - - - Turns on and off physics interpolation for the canvas item. - - @@ -469,316 +367,6 @@ Sets the [CanvasItem]'s Z index, i.e. its draw order (lower indexes are drawn first). - - - - - - Transforms both the current and previous stored transform for a canvas item. - This allows transforming a canvas item without creating a "glitch" in the interpolation. - This is particularly useful for large worlds utilising a shifting origin. - - - - - - - - Attaches the canvas light to the canvas. Removes it from its previous canvas. - - - - - - Creates a canvas light and adds it to the RenderingServer. It can be accessed with the RID that is returned. This RID will be used in all [code]canvas_light_*[/code] RenderingServer functions. - Once finished with your RID, you will want to free the RID using the RenderingServer's [method free_rid] static method. - - - - - - - - Attaches a light occluder to the canvas. Removes it from its previous canvas. - - - - - - Creates a light occluder and adds it to the RenderingServer. It can be accessed with the RID that is returned. This RID will be used in all [code]canvas_light_ocluder_*[/code] RenderingServer functions. - Once finished with your RID, you will want to free the RID using the RenderingServer's [method free_rid] static method. - - - - - - - Prevents physics interpolation for the current physics tick. - This is useful when moving an occluder to a new location, to give an instantaneous change rather than interpolation from the previous location. - - - - - - - - Enables or disables light occluder. - - - - - - - - Turns on and off physics interpolation for the occluder. - - - - - - - - The light mask. See [LightOccluder2D] for more information on light masks. - - - - - - - - Sets a light occluder's polygon. - - - - - - - - Sets a light occluder's [Transform2D]. - - - - - - - - Transforms both the current and previous stored transform for an occluder. - This allows transforming an occluder without creating a "glitch" in the interpolation. - This is particularly useful for large worlds utilising a shifting origin. - - - - - - - Prevents physics interpolation for the current physics tick. - This is useful when moving a light to a new location, to give an instantaneous change rather than interpolation from the previous location. - - - - - - - - Sets the color for a light. - - - - - - - - Enables or disables a canvas light. - - - - - - - - Sets a canvas light's energy. - - - - - - - - Sets a canvas light's height. - - - - - - - - Turns on and off physics interpolation for the light. - - - - - - - - The light mask. See [LightOccluder2D] for more information on light masks. - - - - - - - - The binary mask used to determine which layers this canvas light's shadows affects. See [LightOccluder2D] for more information on light masks. - - - - - - - - - The layer range that gets rendered with this light. - - - - - - - - The mode of the light, see [enum CanvasLightMode] constants. - - - - - - - - Sets the texture's scale factor of the light. Equivalent to [member Light2D.texture_scale]. - - - - - - - - Sets the width of the shadow buffer, size gets scaled to the next power of two for this. - - - - - - - - Sets the color of the canvas light's shadow. - - - - - - - - Enables or disables the canvas light's shadow. - - - - - - - - Sets the canvas light's shadow's filter, see [enum CanvasLightShadowFilter] constants. - - - - - - - - Sets the length of the shadow's gradient. - - - - - - - - Smoothens the shadow. The lower, the smoother. - - - - - - - - Sets texture to be used by light. Equivalent to [member Light2D.texture]. - - - - - - - - Sets the offset of the light's texture. Equivalent to [member Light2D.offset]. - - - - - - - - Sets the canvas light's [Transform2D]. - - - - - - - - - Sets the Z range of objects that will be affected by this light. Equivalent to [member Light2D.range_z_min] and [member Light2D.range_z_max]. - - - - - - - - Transforms both the current and previous stored transform for a light. - This allows transforming a light without creating a "glitch" in the interpolation. - This is particularly useful for large worlds utilising a shifting origin. - - - - - - Creates a new light occluder polygon and adds it to the RenderingServer. It can be accessed with the RID that is returned. This RID will be used in all [code]canvas_occluder_polygon_*[/code] RenderingServer functions. - Once finished with your RID, you will want to free the RID using the RenderingServer's [method free_rid] static method. - - - - - - - - Sets an occluder polygons cull mode. See [enum CanvasOccluderPolygonCullMode] constants. - - - - - - - - - Sets the shape of the occluder polygon. - - - - - - - - Sets the shape of the occluder polygon as lines. - - @@ -812,14 +400,6 @@ [b]Warning:[/b] This function is intended for debugging in the editor, and will pass through and return a zero [Rect2] in exported projects. - - - - Creates a directional light and adds it to the RenderingServer. It can be accessed with the RID that is returned. This RID can be used in most [code]light_*[/code] RenderingServer functions. - Once finished with your RID, you will want to free the RID using the RenderingServer's [method free_rid] static method. - To place in a scene, attach this directional light to an instance using [method instance_set_base] using the returned RID. - - @@ -828,215 +408,6 @@ Draws a frame. [i]This method is deprecated[/i], please use [method force_draw] instead. - - - - Creates an environment and adds it to the RenderingServer. It can be accessed with the RID that is returned. This RID will be used in all [code]environment_*[/code] RenderingServer functions. - Once finished with your RID, you will want to free the RID using the RenderingServer's [method free_rid] static method. - - - - - - - - - - - - Sets the values to be used with the "Adjustment" post-process effect. See [Environment3D] for more details. - - - - - - - - - - Sets the ambient light parameters. See [Environment3D] for more details. - - - - - - - - Sets the [i]BGMode[/i] of the environment. Equivalent to [member Environment3D.background_mode]. - - - - - - - - Color displayed for clear areas of the scene (if using Custom color or Color+Sky background modes). - - - - - - - - Sets the intensity of the background color. - - - - - - - - Sets the maximum layer to use if using Canvas background mode. - - - - - - - - - - - - Sets the values to be used with the "DoF Far Blur" post-process effect. See [Environment3D] for more details. - - - - - - - - - - - - Sets the values to be used with the "DoF Near Blur" post-process effect. See [Environment3D] for more details. - - - - - - - - - - - Sets the variables to be used with the scene fog. See [Environment3D] for more details. - - - - - - - - - - - - - Sets the variables to be used with the fog depth effect. See [Environment3D] for more details. - - - - - - - - - - - Sets the variables to be used with the fog height effect. See [Environment3D] for more details. - - - - - - - - - - - - - - - - - - Sets the variables to be used with the "glow" post-process effect. See [Environment3D] for more details. - - - - - - - - Sets the [Sky] to be used as the environment's background when using [i]BGMode[/i] sky. Equivalent to [member Environment3D.background_sky]. - - - - - - - - Sets a custom field of view for the background [Sky]. Equivalent to [member Environment3D.background_sky_custom_fov]. - - - - - - - - Sets the rotation of the background [Sky] expressed as a [Basis]. Equivalent to [member Environment3D.background_sky_orientation]. - - - - - - - - - - - - - - - - - - - Sets the variables to be used with the "Screen Space Ambient Occlusion (SSAO)" post-process effect. See [Environment3D] for more details. - - - - - - - - - - - - - Sets the variables to be used with the "screen space reflections" post-process effect. See [Environment3D] for more details. - - - - - - - - - - - - - - - Sets the variables to be used with the "tonemap" post-process effect. See [Environment3D] for more details. - - @@ -1126,430 +497,12 @@ When rendering with GLES2, returns [code]true[/code] with [code]skinning_fallback[/code] in case the hardware doesn't support the default GPU skinning process. - - - - - - - Sets up [ImmediateGeometry] internals to prepare for drawing. Equivalent to [method ImmediateGeometry.begin]. - - - - - - - Clears everything that was set up between [method immediate_begin] and [method immediate_end]. Equivalent to [method ImmediateGeometry.clear]. - - - - - - - - Sets the color to be used with next vertex. Equivalent to [method ImmediateGeometry.set_color]. - - - - - - Creates an immediate geometry and adds it to the RenderingServer. It can be accessed with the RID that is returned. This RID will be used in all [code]immediate_*[/code] RenderingServer functions. - Once finished with your RID, you will want to free the RID using the RenderingServer's [method free_rid] static method. - To place in a scene, attach this immediate geometry to an instance using [method instance_set_base] using the returned RID. - - - - - - - Ends drawing the [ImmediateGeometry] and displays it. Equivalent to [method ImmediateGeometry.end]. - - - - - - - Returns the material assigned to the [ImmediateGeometry]. - - - - - - - - Sets the normal to be used with next vertex. Equivalent to [method ImmediateGeometry.set_normal]. - - - - - - - - Sets the material to be used to draw the [ImmediateGeometry]. - - - - - - - - Sets the tangent to be used with next vertex. Equivalent to [method ImmediateGeometry.set_tangent]. - - - - - - - - Sets the UV to be used with next vertex. Equivalent to [method ImmediateGeometry.set_uv]. - - - - - - - - Sets the UV2 to be used with next vertex. Equivalent to [method ImmediateGeometry.set_uv2]. - - - - - - - - Adds the next vertex using the information provided in advance. Equivalent to [method ImmediateGeometry.add_vertex]. - - - - - - - - Adds the next vertex using the information provided in advance. This is a helper class that calls [method immediate_vertex] under the hood. Equivalent to [method ImmediateGeometry.add_vertex]. - - Initializes the visual server. This function is called internally by platform-dependent code during engine initialization. If called from a running game, it will not do anything. - - - - - - Attaches a unique Object ID to instance. Object ID must be attached to instance for proper culling with [method instances_cull_aabb], [method instances_cull_convex], and [method instances_cull_ray]. - - - - - - - - Attaches a skeleton to an instance. Removes the previous skeleton from the instance. - - - - - - Creates a visual instance and adds it to the RenderingServer. It can be accessed with the RID that is returned. This RID will be used in all [code]instance_*[/code] RenderingServer functions. - Once finished with your RID, you will want to free the RID using the RenderingServer's [method free_rid] static method. - An instance is a way of placing a 3D object in the scenario. Objects like particles, meshes, and reflection probes need to be associated with an instance to be visible in the scenario using [method instance_set_base]. - - - - - - - - Creates a visual instance, adds it to the RenderingServer, and sets both base and scenario. It can be accessed with the RID that is returned. This RID will be used in all [code]instance_*[/code] RenderingServer functions. - Once finished with your RID, you will want to free the RID using the RenderingServer's [method free_rid] static method. - - - - - - - - Not implemented in Godot 3.x. - - - - - - - - Sets the shadow casting setting to one of [enum ShadowCastingSetting]. Equivalent to [member GeometryInstance.cast_shadow]. - - - - - - - - - - - Not implemented in Godot 3.x. - - - - - - - - - Sets the flag for a given [enum InstanceFlags]. See [enum InstanceFlags] for more details. - - - - - - - - Sets a material that will be rendered for all surfaces on top of active materials for the mesh associated with this instance. Equivalent to [member GeometryInstance.material_overlay]. - - - - - - - - Sets a material that will override the material for all surfaces on the mesh associated with this instance. Equivalent to [member GeometryInstance.material_override]. - - - - - - - Prevents physics interpolation for the current physics tick. - This is useful when moving an instance to a new location, to give an instantaneous change rather than interpolation from the previous location. - - - - - - - - Sets the base of the instance. A base can be any of the 3D objects that are created in the RenderingServer that can be displayed. For example, any of the light types, mesh, multimesh, immediate geometry, particle system, reflection probe, lightmap capture, and the GI probe are all types that can be set as the base of an instance in order to be displayed in the scenario. - - - - - - - - - Sets the weight for a given blend shape associated with this instance. - - - - - - - - Sets a custom AABB to use when culling objects from the view frustum. Equivalent to [method GeometryInstance.set_custom_aabb]. - - - - - - - - Function not implemented in Godot 3.x. - - - - - - - - Sets a margin to increase the size of the AABB when culling objects from the view frustum. This allows you to avoid culling objects that fall outside the view frustum. Equivalent to [member GeometryInstance.extra_cull_margin]. - - - - - - - - Turns on and off physics interpolation for the instance. - - - - - - - - Sets the render layers that this instance will be drawn to. Equivalent to [member VisualInstance.layers]. - - - - - - - - Sets the scenario that the instance is in. The scenario is the 3D world that the objects will be displayed in. - - - - - - - - - Sets the material of a specific surface. Equivalent to [method MeshInstance.set_surface_material]. - - - - - - - - Sets the world space transform of the instance. Equivalent to [member Spatial.transform]. - - - - - - - - Sets whether an instance is drawn or not. Equivalent to [member Spatial.visible]. - - - - - - - - Returns an array of object IDs intersecting with the provided AABB. Only visual 3D nodes are considered, such as [MeshInstance] or [DirectionalLight]. Use [method @GDScript.instance_from_id] to obtain the actual nodes. A scenario RID must be provided, which is available in the [World3D] you want to query. This forces an update for all resources queued to update. - [b]Warning:[/b] This function is primarily intended for editor usage. For in-game use cases, prefer physics collision. - - - - - - - - Returns an array of object IDs intersecting with the provided convex shape. Only visual 3D nodes are considered, such as [MeshInstance] or [DirectionalLight]. Use [method @GDScript.instance_from_id] to obtain the actual nodes. A scenario RID must be provided, which is available in the [World3D] you want to query. This forces an update for all resources queued to update. - [b]Warning:[/b] This function is primarily intended for editor usage. For in-game use cases, prefer physics collision. - - - - - - - - - Returns an array of object IDs intersecting with the provided 3D ray. Only visual 3D nodes are considered, such as [MeshInstance] or [DirectionalLight]. Use [method @GDScript.instance_from_id] to obtain the actual nodes. A scenario RID must be provided, which is available in the [World3D] you want to query. This forces an update for all resources queued to update. - [b]Warning:[/b] This function is primarily intended for editor usage. For in-game use cases, prefer physics collision. - - - - - - - - If [code]true[/code], this directional light will blend between shadow map splits resulting in a smoother transition between them. Equivalent to [member DirectionalLight.directional_shadow_blend_splits]. - - - - - - - - Sets the shadow depth range mode for this directional light. Equivalent to [member DirectionalLight.directional_shadow_depth_range]. See [enum LightDirectionalShadowDepthRangeMode] for options. - - - - - - - - Sets the shadow mode for this directional light. Equivalent to [member DirectionalLight.directional_shadow_mode]. See [enum LightDirectionalShadowMode] for options. - - - - - - - - Sets whether to use vertical or horizontal detail for this omni light. This can be used to alleviate artifacts in the shadow map. Equivalent to [member OmniLight.omni_shadow_detail]. - - - - - - - - Sets whether to use a dual paraboloid or a cubemap for the shadow map. Dual paraboloid is faster but may suffer from artifacts. Equivalent to [member OmniLight.omni_shadow_mode]. - - - - - - - - Sets the color of the light. Equivalent to [member Light.light_color]. - - - - - - - - Sets the cull mask for this Light. Lights only affect objects in the selected layers. Equivalent to [member Light.light_cull_mask]. - - - - - - - - If [code]true[/code], light will subtract light instead of adding light. Equivalent to [member Light.light_negative]. - - - - - - - - - Sets the specified light parameter. See [enum LightParam] for options. Equivalent to [method Light.set_param]. - - - - - - - - Not implemented in Godot 3.x. - - - - - - - - If [code]true[/code], reverses the backface culling of the mesh. This can be useful when you have a flat mesh that has a light behind it. If you need to cast a shadow on both sides of the mesh, set the mesh to use double sided shadows with [method instance_geometry_set_cast_shadows_setting]. Equivalent to [member Light.shadow_reverse_cull_face]. - - - - - - - - If [code]true[/code], light will cast shadows. Equivalent to [member Light.shadow_enabled]. - - - - - - - - Sets the color of the shadow cast by the light. Equivalent to [member Light.shadow_color]. - - @@ -1633,7 +586,7 @@ - + Adds a surface generated from the Arrays to a mesh. See [enum PrimitiveType] constants for types. @@ -1812,14 +765,6 @@ Returns the primitive type of a mesh's surface. - - - - - - Returns the aabb of a mesh's surface's skeleton. - - @@ -2018,118 +963,6 @@ Sets the number of instances visible at a given time. If -1, all instances that have been allocated are drawn. Equivalent to [member MultiMesh.visible_instance_count]. - - - - Creates a new omni light and adds it to the RenderingServer. It can be accessed with the RID that is returned. This RID can be used in most [code]light_*[/code] RenderingServer functions. - Once finished with your RID, you will want to free the RID using the RenderingServer's [method free_rid] static method. - To place in a scene, attach this omni light to an instance using [method instance_set_base] using the returned RID. - - - - - - Creates a reflection probe and adds it to the RenderingServer. It can be accessed with the RID that is returned. This RID will be used in all [code]reflection_probe_*[/code] RenderingServer functions. - Once finished with your RID, you will want to free the RID using the RenderingServer's [method free_rid] static method. - To place in a scene, attach this reflection probe to an instance using [method instance_set_base] using the returned RID. - - - - - - - - If [code]true[/code], reflections will ignore sky contribution. Equivalent to [member ReflectionProbe.interior_enable]. - - - - - - - - Sets the render cull mask for this reflection probe. Only instances with a matching cull mask will be rendered by this probe. Equivalent to [member ReflectionProbe.cull_mask]. - - - - - - - - If [code]true[/code], uses box projection. This can make reflections look more correct in certain situations. Equivalent to [member ReflectionProbe.box_projection]. - - - - - - - - If [code]true[/code], computes shadows in the reflection probe. This makes the reflection much slower to compute. Equivalent to [member ReflectionProbe.enable_shadows]. - - - - - - - - Sets the size of the area that the reflection probe will capture. Equivalent to [member ReflectionProbe.extents]. - - - - - - - - Sets the intensity of the reflection probe. Intensity modulates the strength of the reflection. Equivalent to [member ReflectionProbe.intensity]. - - - - - - - - Sets the ambient light color for this reflection probe when set to interior mode. Equivalent to [member ReflectionProbe.interior_ambient_color]. - - - - - - - - Sets the energy multiplier for this reflection probes ambient light contribution when set to interior mode. Equivalent to [member ReflectionProbe.interior_ambient_energy]. - - - - - - - - Sets the contribution value for how much the reflection affects the ambient light for this reflection probe when set to interior mode. Useful so that ambient light matches the color of the room. Equivalent to [member ReflectionProbe.interior_ambient_contrib]. - - - - - - - - Sets the max distance away from the probe an object can be before it is culled. Equivalent to [member ReflectionProbe.max_distance]. - - - - - - - - Sets the origin offset to be used when this reflection probe is in box project mode. Equivalent to [member ReflectionProbe.origin_offset]. - - - - - - - - Sets how often the reflection probe updates. Can either be once or every frame. See [enum ReflectionProbeUpdateMode] for options. - - @@ -2138,47 +971,6 @@ - - - - Creates a scenario and adds it to the RenderingServer. It can be accessed with the RID that is returned. This RID will be used in all [code]scenario_*[/code] RenderingServer functions. - Once finished with your RID, you will want to free the RID using the RenderingServer's [method free_rid] static method. - The scenario is the 3D world that all the visual instances exist in. - - - - - - - - Sets the [enum ScenarioDebugMode] for this scenario. See [enum ScenarioDebugMode] for options. - - - - - - - - Sets the environment that will be used with this scenario. - - - - - - - - Sets the fallback environment to be used by this scenario. The fallback environment is used if no environment is set. Internally, this is used by the editor to provide a default environment. - - - - - - - - - Sets the size of the reflection atlas shared by all reflection probes in this scenario. - - @@ -2220,13 +1012,6 @@ The default value is [code]1.0[/code], which means [code]TIME[/code] will count the real time as it goes by, without narrowing or stretching it. - - - - - Enables or disables occlusion culling. - - @@ -2271,87 +1056,6 @@ - - - - - - - Allocates the GPU buffers for this skeleton. - - - - - - - - Returns the [Transform] set for a specific bone of this skeleton. - - - - - - - - Returns the [Transform2D] set for a specific bone of this skeleton. - - - - - - - - - Sets the [Transform] for a specific bone of this skeleton. - - - - - - - - - Sets the [Transform2D] for a specific bone of this skeleton. - - - - - - Creates a skeleton and adds it to the RenderingServer. It can be accessed with the RID that is returned. This RID will be used in all [code]skeleton_*[/code] RenderingServer functions. - Once finished with your RID, you will want to free the RID using the RenderingServer's [method free_rid] static method. - - - - - - - Returns the number of bones allocated for this skeleton. - - - - - - Creates an empty sky and adds it to the RenderingServer. It can be accessed with the RID that is returned. This RID will be used in all [code]sky_*[/code] RenderingServer functions. - Once finished with your RID, you will want to free the RID using the RenderingServer's [method free_rid] static method. - - - - - - - - - Sets a sky's texture. - - - - - - Creates a spot light and adds it to the RenderingServer. It can be accessed with the RID that is returned. This RID can be used in most [code]light_*[/code] RenderingServer functions. - Once finished with your RID, you will want to free the RID using the RenderingServer's [method free_rid] static method. - To place in a scene, attach this spot light to an instance using [method instance_set_base] using the returned RID. - - @@ -2552,14 +1256,6 @@ If [code]true[/code], the image will be stored in the texture's images array if overwritten. - - - - - - Sets a viewport's camera. - - @@ -2665,22 +1361,6 @@ Sets the debug draw mode of a viewport. See [enum ViewportDebugDraw] for options. - - - - - - If [code]true[/code], a viewport's 3D rendering is disabled. - - - - - - - - If [code]true[/code], rendering of a viewport's environment is disabled. - - @@ -2706,14 +1386,6 @@ If [code]true[/code], the viewport's canvas is not rendered. - - - - - - Currently unimplemented in Godot 3.x. - - @@ -2738,32 +1410,6 @@ If [code]true[/code], render the contents of the viewport directly to screen. This allows a low-level optimization where you can skip drawing a viewport to the root viewport. While this optimization can result in a significant increase in speed (especially on older devices), it comes at a cost of usability. When this is enabled, you cannot read from the viewport or from the [code]SCREEN_TEXTURE[/code]. You also lose the benefit of certain window settings, such as the various stretch modes. Another consequence to be aware of is that in 2D the rendering happens in window coordinates, so if you have a viewport that is double the size of the window, and you set this, then only the portion that fits within the window will be drawn, no automatic scaling is possible, even if your game scene is significantly larger than the window size. - - - - - - Sets a viewport's scenario. - The scenario contains information about the [enum ScenarioDebugMode], environment information, reflection atlas etc. - - - - - - - - - Sets the shadow atlas quadrant's subdivision. - - - - - - - - Sets the size of the shadow atlas's images (used for omni and spot lights). The value will be rounded up to the nearest power of 2. - - @@ -2937,16 +1583,10 @@ Default flags. [constant TEXTURE_FLAG_MIPMAPS], [constant TEXTURE_FLAG_REPEAT] and [constant TEXTURE_FLAG_FILTER] are enabled. - - Shader is a 3D shader. - - + Shader is a 2D shader. - - Shader is a particle shader. - - + Represents the size of the [enum ShaderMode] enum. @@ -2967,16 +1607,10 @@ Array is an UV coordinates array for the second UV coordinates. - - Array contains bone information. - - - Array is weight information. - - + Array is index array. - + Represents the size of the [enum ArrayType] enum. @@ -2997,52 +1631,34 @@ Flag used to mark an UV coordinates array for the second UV coordinates. - - Flag used to mark a bone information array. - - - Flag used to mark a weights array. - - + Flag used to mark an index array. - + Flag used to mark a compressed (half float) vertex array. - + Flag used to mark a compressed (half float) normal array. - + Flag used to mark a compressed (half float) tangent array. - + Flag used to mark a compressed (half float) color array. - + Flag used to mark a compressed (half float) UV coordinates array. - + Flag used to mark a compressed (half float) UV coordinates array for the second UV coordinates. - - Flag used to mark a compressed bone array. - - - Flag used to mark a compressed (half float) weight array. - - + Flag used to mark a compressed index array. - + Flag used to mark that the array contains 2D vertices. - - Flag used to mark that the array uses 16-bit bones instead of 8-bit. - - - Flag used to mark that the array uses an octahedral representation of normal and tangent vectors rather than cartesian. - - + Used to set flags [constant ARRAY_COMPRESS_NORMAL], [constant ARRAY_COMPRESS_TANGENT], [constant ARRAY_COMPRESS_COLOR], [constant ARRAY_COMPRESS_TEX_UV], [constant ARRAY_COMPRESS_TEX_UV2], [constant ARRAY_COMPRESS_WEIGHTS], and [constant ARRAY_FLAG_USE_OCTAHEDRAL_COMPRESSION] quickly. @@ -3075,96 +1691,6 @@ Blend shapes are relative to base weight. - - Is a directional (sun) light. - - - Is an omni light. - - - Is a spot light. - - - The light's energy. - - - Secondary multiplier used with indirect light (light bounces). - - - The light's size, currently only used for soft shadows in baked lightmaps. - - - The light's influence on specularity. - - - The light's range. - - - The light's attenuation. - - - The spotlight's angle. - - - The spotlight's attenuation. - - - Scales the shadow color. - - - Max distance that shadows will be rendered. - - - Proportion of shadow atlas occupied by the first split. - - - Proportion of shadow atlas occupied by the second split. - - - Proportion of shadow atlas occupied by the third split. The fourth split occupies the rest. - - - Normal bias used to offset shadow lookup by object normal. Can be used to fix self-shadowing artifacts. - - - Bias the shadow lookup to fix self-shadowing artifacts. - - - Increases bias on further splits to fix self-shadowing that only occurs far away from the camera. - - - Represents the size of the [enum LightParam] enum. - - - Use a dual paraboloid shadow map for omni lights. - - - Use a cubemap shadow map for omni lights. Slower but better quality than dual paraboloid. - - - Use more detail vertically when computing shadow map. - - - Use more detail horizontally when computing shadow map. - - - Use orthogonal shadow projection for directional light. - - - Use 2 splits for shadow projection when using directional light. - - - Use 3 splits for shadow projection when using directional light. - - - Use 4 splits for shadow projection when using directional light. - - - Keeps shadows stable as camera moves but has lower effective resolution. - - - Optimize use of shadow maps, increasing the effective resolution. But may result in shadows moving or flickering slightly. - Do not update the viewport. @@ -3213,12 +1739,6 @@ The Viewport does not render 3D and does not sample. - - The Viewport renders 3D with effects. - - - The Viewport renders 3D but without effects. - Number of objects drawn in a single frame. @@ -3258,18 +1778,6 @@ Debug draw draws objects in wireframe. - - Do not use a debug mode. - - - Draw all objects as wireframe models. - - - Draw all objects in a way that displays how much overdraw is occurring. Overdraw occurs when a section of pixels is drawn and shaded and then another object covers it up. To optimize a scene, you should reduce overdraw. - - - Draw all objects without shading. Equivalent to setting all objects shaders to [code]unshaded[/code]. - The instance does not have a type. @@ -3279,19 +1787,10 @@ The instance is a multimesh. - - The instance is an immediate geometry. - - - The instance is a light. - - - The instance is a reflection probe. - - + Represents the size of the [enum InstanceType] enum. - + A combination of the flags of geometry instances (mesh, multimesh, immediate and particles). @@ -3300,18 +1799,6 @@ Represents the size of the [enum InstanceFlags] enum. - - Disable shadows from this instance. - - - Cast shadows from this instance. - - - Disable backface culling when rendering the shadow of the object. This is slightly slower but may result in more correct shadows. - - - Only render the shadows from the object. The object itself will not be drawn. - The nine patch gets stretched where needed. @@ -3321,45 +1808,6 @@ The nine patch gets filled with tiles where needed and stretches them a bit if needed. - - Adds light color additive to the canvas. - - - Adds light color subtractive to the canvas. - - - The light adds color depending on transparency. - - - The light adds color depending on mask. - - - Do not apply a filter to canvas light shadows. - - - Use PCF3 filtering to filter canvas light shadows. - - - Use PCF5 filtering to filter canvas light shadows. - - - Use PCF7 filtering to filter canvas light shadows. - - - Use PCF9 filtering to filter canvas light shadows. - - - Use PCF13 filtering to filter canvas light shadows. - - - Culling of the canvas occluder is disabled. - - - Culling of the canvas occluder is clockwise. - - - Culling of the canvas occluder is counterclockwise. - The amount of objects in the frame. @@ -3438,91 +1886,6 @@ MultiMesh physics interpolation favours quality over speed. - - Reflection probe will update reflections once and then stop. - - - Reflection probe will update each frame. This mode is necessary to capture moving objects. - - - Use the clear color as background. - - - Use a specified color as the background. - - - Use a sky resource for the background. - - - Use a custom color for background, but use a sky for shading and reflections. - - - Use a specified canvas layer as the background. This can be useful for instantiating a 2D scene in a 3D world. - - - Do not clear the background, use whatever was rendered last frame as the background. - - - Represents the size of the [enum Environment3DBG] enum. - - - Use lowest blur quality. Fastest, but may look bad. - - - Use medium blur quality. - - - Used highest blur quality. Looks the best, but is the slowest. - - - Add the effect of the glow on top of the scene. - - - Blends the glow effect with the screen. Does not get as bright as additive. - - - Produces a subtle color disturbance around objects. - - - Shows the glow effect by itself without the underlying scene. - - - Output color as they came in. This can cause bright lighting to look blown out, with noticeable clipping in the output colors. - - - Use the Reinhard tonemapper. Performs a variation on rendered pixels' colors by this formula: [code]color = color / (1 + color)[/code]. This avoids clipping bright highlights, but the resulting image can look a bit dull. - - - Use the filmic tonemapper. This avoids clipping bright highlights, with a resulting image that usually looks more vivid than [constant ENV_TONE_MAPPER_REINHARD]. - - - Use the legacy Godot version of the Academy Color Encoding System tonemapper. Unlike [constant ENV_TONE_MAPPER_ACES_FITTED], this version of ACES does not handle bright lighting in a physically accurate way. ACES typically has a more contrasted output compared to [constant ENV_TONE_MAPPER_REINHARD] and [constant ENV_TONE_MAPPER_FILMIC]. - [b]Note:[/b] This tonemapping operator will be removed in Godot 4.0 in favor of the more accurate [constant ENV_TONE_MAPPER_ACES_FITTED]. - - - Use the Academy Color Encoding System tonemapper. ACES is slightly more expensive than other options, but it handles bright lighting in a more realistic fashion by desaturating it as it becomes brighter. ACES typically has a more contrasted output compared to [constant ENV_TONE_MAPPER_REINHARD] and [constant ENV_TONE_MAPPER_FILMIC]. - - - Lowest quality of screen space ambient occlusion. - - - Medium quality screen space ambient occlusion. - - - Highest quality screen space ambient occlusion. - - - Disables the blur set for SSAO. Will make SSAO look noisier. - - - Perform a 1x1 blur on the SSAO output. - - - Performs a 2x2 blur on the SSAO output. - - - Performs a 3x3 blur on the SSAO output. Use this for smoothest SSAO. - Used to query for any changes that request a redraw, whatever the priority. diff --git a/doc/classes/ResourceSaver.xml b/doc/classes/ResourceSaver.xml index 461b1a0..0223a57 100644 --- a/doc/classes/ResourceSaver.xml +++ b/doc/classes/ResourceSaver.xml @@ -45,10 +45,7 @@ Save as big endian (see [member File.endian_swap]). - - Compress the resource on save using [constant File.COMPRESSION_ZSTD]. Only available for binary resource types. - - + Take over the paths of the saved subresources (see [method Resource.take_over_path]). diff --git a/doc/classes/RigidBody.xml b/doc/classes/RigidBody.xml deleted file mode 100644 index d25880e..0000000 --- a/doc/classes/RigidBody.xml +++ /dev/null @@ -1,253 +0,0 @@ - - - - Physics Body whose position is determined through physics simulation in 3D space. - - - This is the node that implements full 3D physics. This means that you do not control a RigidBody directly. Instead, you can apply forces to it (gravity, impulses, etc.), and the physics simulation will calculate the resulting movement, collision, bouncing, rotating, etc. - A RigidBody has 4 behavior [member mode]s: Rigid, Static, Character, and Kinematic. - [b]Note:[/b] Don't change a RigidBody's position every frame or very often. Sporadic changes work fine, but physics runs at a different granularity (fixed Hz) than usual rendering (process callback) and maybe even in a separate thread, so changing this from a process loop may result in strange behavior. If you need to directly affect the body's state, use [method _integrate_forces], which allows you to directly access the physics state. - If you need to override the default physics behavior, you can write a custom force integration function. See [member custom_integrator]. - With Bullet physics (the default), the center of mass is the RigidBody3D center. With GodotPhysics, the center of mass is the average of the [CollisionShape] centers. - [b]Warning:[/b] With a non-uniform scale this node will probably not function as expected. Please make sure to keep its scale uniform (i.e. the same on all axes), and change the size(s) of its collision shape(s) instead. - - - $DOCS_URL/tutorials/physics/physics_introduction.md - https://godotengine.org/asset-library/asset/524 - https://godotengine.org/asset-library/asset/675 - - - - - - - Called during physics processing, allowing you to read and safely modify the simulation state for the object. By default, it works in addition to the usual physics behavior, but the [member custom_integrator] property allows you to disable the default behavior and do fully custom force integration for a body. - - - - - - - Adds a constant directional force (i.e. acceleration) without affecting rotation. - This is equivalent to [code]add_force(force, Vector3(0,0,0))[/code]. - - - - - - - - Adds a constant directional force (i.e. acceleration). - The position uses the rotation of the global coordinate system, but is centered at the object's origin. - - - - - - - Adds a constant rotational force (i.e. a motor) without affecting position. - - - - - - - Applies a directional impulse without affecting rotation. - This is equivalent to [code]apply_impulse(Vector3(0,0,0), impulse)[/code]. - - - - - - - - Applies a positioned impulse to the body. An impulse is time independent! Applying an impulse every frame would result in a framerate-dependent force. For this reason it should only be used when simulating one-time impacts. The position uses the rotation of the global coordinate system, but is centered at the object's origin. - - - - - - - Applies a torque impulse which will be affected by the body mass and shape. This will rotate the body around the [code]impulse[/code] vector passed. - - - - - - - Returns [code]true[/code] if the specified linear or rotational axis is locked. - - - - - - Returns a list of the bodies colliding with this one. Requires [member contact_monitor] to be set to [code]true[/code] and [member contacts_reported] to be set high enough to detect all the collisions. - [b]Note:[/b] The result of this test is not immediate after moving objects. For performance, list of collisions is updated once per frame and before the physics step. Consider using signals instead. - - - - - - Returns the inverse inertia tensor basis. This is used to calculate the angular acceleration resulting from a torque applied to the RigidBody. - - - - - - - - Locks the specified linear or rotational axis. - - - - - - - Sets an axis velocity. The velocity in the given vector axis will be set as the given vector length. This is useful for jumping behavior. - - - - - - Damps RigidBody's rotational forces. If this value is different from -1.0 it will be added to any linear damp derived from the world or areas. - See [member ProjectSettings.physics/3d/default_angular_damp] for more details about damping. - - - The body's rotational velocity in axis-angle format. The magnitude of the vector is the rotation rate in [i]radians[/i] per second. - - - Lock the body's rotation in the X axis. - - - Lock the body's rotation in the Y axis. - - - Lock the body's rotation in the Z axis. - - - Lock the body's movement in the X axis. - - - Lock the body's movement in the Y axis. - - - Lock the body's movement in the Z axis. - - - The body's bounciness. Values range from [code]0[/code] (no bounce) to [code]1[/code] (full bounciness). - Deprecated, use [member PhysicsMaterial.bounce] instead via [member physics_material_override]. - - - If [code]true[/code], the body can enter sleep mode when there is no movement. See [member sleeping]. - [b]Note:[/b] A RigidBody3D will never enter sleep mode automatically if its [member mode] is [constant MODE_CHARACTER]. It can still be put to sleep manually by setting its [member sleeping] property to [code]true[/code]. - - - If [code]true[/code], the RigidBody will emit signals when it collides with another RigidBody. See also [member contacts_reported]. - - - The maximum number of contacts that will be recorded. Requires [member contact_monitor] to be set to [code]true[/code]. - [b]Note:[/b] The number of contacts is different from the number of collisions. Collisions between parallel edges will result in two contacts (one at each end), and collisions between parallel faces will result in four contacts (one at each corner). - - - If [code]true[/code], continuous collision detection is used. - Continuous collision detection tries to predict where a moving body will collide, instead of moving it and correcting its movement if it collided. Continuous collision detection is more precise, and misses fewer impacts by small, fast-moving objects. Not using continuous collision detection is faster to compute, but can miss small, fast-moving objects. - - - If [code]true[/code], internal force integration will be disabled (like gravity or air friction) for this body. Other than collision response, the body will only move as determined by the [method _integrate_forces] function, if defined. - - - The body's friction, from 0 (frictionless) to 1 (max friction). - Deprecated, use [member PhysicsMaterial.friction] instead via [member physics_material_override]. - - - This is multiplied by the global 3D gravity setting found in [b]Project > Project Settings > Physics > 3d[/b] to produce RigidBody's gravity. For example, a value of 1 will be normal gravity, 2 will apply double gravity, and 0.5 will apply half gravity to this object. - - - The body's linear damp. Cannot be less than -1.0. If this value is different from -1.0 it will be added to any linear damp derived from the world or areas. - See [member ProjectSettings.physics/3d/default_linear_damp] for more details about damping. - - - The body's linear velocity in units per second. Can be used sporadically, but [b]don't set this every frame[/b], because physics may run in another thread and runs at a different granularity. Use [method _integrate_forces] as your process loop for precise control of the body state. - - - The body's mass. - - - The body mode. See [enum Mode] for possible values. - - - The physics material override for the body. - If a material is assigned to this property, it will be used instead of any other physics material, such as an inherited one. - - - If [code]true[/code], the body will not move and will not calculate forces until woken up by another body through, for example, a collision, or by using the [method apply_impulse] or [method add_force] methods. - - - The body's weight based on its mass and the global 3D gravity. Global values are set in [b]Project > Project Settings > Physics > 3d[/b]. - - - - - - - Emitted when a collision with another [PhysicsBody] or [GridMap] occurs. Requires [member contact_monitor] to be set to [code]true[/code] and [member contacts_reported] to be set high enough to detect all the collisions. [GridMap]s are detected if the [MeshLibrary] has Collision [Shape]s. - [code]body[/code] the [Node], if it exists in the tree, of the other [PhysicsBody] or [GridMap]. - - - - - - Emitted when the collision with another [PhysicsBody] or [GridMap] ends. Requires [member contact_monitor] to be set to [code]true[/code] and [member contacts_reported] to be set high enough to detect all the collisions. [GridMap]s are detected if the [MeshLibrary] has Collision [Shape]s. - [code]body[/code] the [Node], if it exists in the tree, of the other [PhysicsBody] or [GridMap]. - - - - - - - - - Emitted when one of this RigidBody's [Shape]s collides with another [PhysicsBody] or [GridMap]'s [Shape]s. Requires [member contact_monitor] to be set to [code]true[/code] and [member contacts_reported] to be set high enough to detect all the collisions. [GridMap]s are detected if the [MeshLibrary] has Collision [Shape]s. - [code]body_rid[/code] the [RID] of the other [PhysicsBody] or [MeshLibrary]'s [CollisionObject] used by the [PhysicsServer]. - [code]body[/code] the [Node], if it exists in the tree, of the other [PhysicsBody] or [GridMap]. - [code]body_shape_index[/code] the index of the [Shape] of the other [PhysicsBody] or [GridMap] used by the [PhysicsServer]. Get the [CollisionShape] node with [code]body.shape_owner_get_owner(body_shape_index)[/code]. - [code]local_shape_index[/code] the index of the [Shape] of this RigidBody used by the [PhysicsServer]. Get the [CollisionShape] node with [code]self.shape_owner_get_owner(local_shape_index)[/code]. - [b]Note:[/b] Bullet physics cannot identify the shape index when using a [ConcavePolygonShape]. Don't use multiple [CollisionShape]s when using a [ConcavePolygonShape] with Bullet physics if you need shape indices. - - - - - - - - - Emitted when the collision between one of this RigidBody's [Shape]s and another [PhysicsBody] or [GridMap]'s [Shape]s ends. Requires [member contact_monitor] to be set to [code]true[/code] and [member contacts_reported] to be set high enough to detect all the collisions. [GridMap]s are detected if the [MeshLibrary] has Collision [Shape]s. - [code]body_rid[/code] the [RID] of the other [PhysicsBody] or [MeshLibrary]'s [CollisionObject] used by the [PhysicsServer]. [GridMap]s are detected if the Meshes have [Shape]s. - [code]body[/code] the [Node], if it exists in the tree, of the other [PhysicsBody] or [GridMap]. - [code]body_shape_index[/code] the index of the [Shape] of the other [PhysicsBody] or [GridMap] used by the [PhysicsServer]. Get the [CollisionShape] node with [code]body.shape_owner_get_owner(body_shape_index)[/code]. - [code]local_shape_index[/code] the index of the [Shape] of this RigidBody used by the [PhysicsServer]. Get the [CollisionShape] node with [code]self.shape_owner_get_owner(local_shape_index)[/code]. - [b]Note:[/b] Bullet physics cannot identify the shape index when using a [ConcavePolygonShape]. Don't use multiple [CollisionShape]s when using a [ConcavePolygonShape] with Bullet physics if you need shape indices. - - - - - Emitted when the physics engine changes the body's sleeping state. - [b]Note:[/b] Changing the value [member sleeping] will not trigger this signal. It is only emitted if the sleeping state is changed by the physics engine or [code]emit_signal("sleeping_state_changed")[/code] is used. - - - - - - Rigid body mode. This is the "natural" state of a rigid body. It is affected by forces, and can move, rotate, and be affected by user code. - - - Static mode. The body behaves like a [StaticBody], and can only move by user code. - - - Character body mode. This behaves like a rigid body, but can not rotate. - - - Kinematic body mode. The body behaves like a [KinematicBody], and can only move by user code. - - - diff --git a/doc/classes/RootMotionView.xml b/doc/classes/RootMotionView.xml deleted file mode 100644 index 043a190..0000000 --- a/doc/classes/RootMotionView.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - Editor-only helper for setting up root motion in [AnimationTree]. - - - [i]Root motion[/i] refers to an animation technique where a mesh's skeleton is used to give impulse to a character. When working with 3D animations, a popular technique is for animators to use the root skeleton bone to give motion to the rest of the skeleton. This allows animating characters in a way where steps actually match the floor below. It also allows precise interaction with objects during cinematics. See also [AnimationTree]. - [b]Note:[/b] [RootMotionView] is only visible in the editor. It will be hidden automatically in the running project, and will also be converted to a plain [Node] in the running project. This means a script attached to a [RootMotionView] node [i]must[/i] have [code]extends Node[/code] instead of [code]extends RootMotionView[/code]. Additionally, it must not be a [code]tool[/code] script. - - - $DOCS_URL/tutorials/animation/animation_tree.html#root-motion - - - - - - Path to an [AnimationTree] node to use as a basis for root motion. - - - The grid's cell size in 3D units. - - - The grid's color. - - - The grid's radius in 3D units. The grid's opacity will fade gradually as the distance from the origin increases until this [member radius] is reached. - - - If [code]true[/code], the grid's points will all be on the same Y coordinate ([i]local[/i] Y = 0). If [code]false[/code], the points' original Y coordinate is preserved. - - - - - diff --git a/doc/classes/SceneTree.xml b/doc/classes/SceneTree.xml index c352324..5f4ea78 100644 --- a/doc/classes/SceneTree.xml +++ b/doc/classes/SceneTree.xml @@ -231,9 +231,6 @@ If [code]true[/code], curves from [Path2D] and [Path3D] nodes will be visible when running the game from the editor for debugging purposes. - - The root of the edited scene. - The default [MultiplayerAPI] instance for this [SceneTree]. @@ -249,9 +246,6 @@ - 2D and 3D physics will be stopped. This includes signals and collision detection. - [method Node._process], [method Node._physics_process] and [method Node._input] will not be called anymore in nodes. - - Although physics interpolation would normally be globally turned on and off using [member ProjectSettings.physics/common/physics_interpolation], this property allows control over interpolation at runtime. - If [code]true[/code], the application quits automatically on going back (e.g. on Android). To handle 'Go Back' button when this option is disabled, use [constant MainLoop.NOTIFICATION_WM_GO_BACK_REQUEST]. @@ -354,6 +348,11 @@ Emitted whenever the [SceneTree] hierarchy changed (children being moved or renamed, etc.). + + + + + diff --git a/doc/classes/ScriptCreateDialog.xml b/doc/classes/ScriptCreateDialog.xml deleted file mode 100644 index cf6d827..0000000 --- a/doc/classes/ScriptCreateDialog.xml +++ /dev/null @@ -1,46 +0,0 @@ - - - - The Editor's popup dialog for creating new [Script] files. - - - The [ScriptCreateDialog] creates script files according to a given template for a given scripting language. The standard use is to configure its fields prior to calling one of the [method Popup.popup] methods. - [codeblock] - func _ready(): - dialog.config("Node", "res://new_node.gd") # For in-engine types - dialog.config("\"res://base_node.gd\"", "res://derived_node.gd") # For script types - dialog.popup_centered() - [/codeblock] - - - - - - - - - - - - Prefills required fields to configure the ScriptCreateDialog for use. - - - - - - - - - - - - - - - Emitted when the user clicks the OK button. - - - - - - diff --git a/doc/classes/Shape.xml b/doc/classes/Shape.xml deleted file mode 100644 index 8c374d8..0000000 --- a/doc/classes/Shape.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - Base class for all 3D shape resources. - - - Base class for all 3D shape resources. Nodes that inherit from this can be used as shapes for a [PhysicsBody] or [Area] objects. - - - $DOCS_URL/tutorials/physics/physics_introduction.md - - - - - - Returns the [ArrayMesh] used to draw the debug collision for this [Shape]. - - - - - - The collision margin for the shape. Used in Bullet Physics only. - Collision margins allow collision detection to be more efficient by adding an extra shell around shapes. Collision algorithms are more expensive when objects overlap by more than their margin, so a higher value for margins is better for performance, at the cost of accuracy around edges as it makes them less sharp. - - - - - diff --git a/doc/classes/ShapeCast.xml b/doc/classes/ShapeCast.xml deleted file mode 100644 index 38baef3..0000000 --- a/doc/classes/ShapeCast.xml +++ /dev/null @@ -1,177 +0,0 @@ - - - - Node for physics collision sweep and immediate overlap queries. Similar to the [RayCast] node. - - - Shape casting allows to detect collision objects by sweeping the [member shape] along the cast direction determined by [member target_position] (useful for things like beam weapons). - Immediate collision overlaps can be done with the [member target_position] set to [code]Vector3(0, 0, 0)[/code] and by calling [method force_shapecast_update] within the same [b]physics_frame[/b]. This also helps to overcome some limitations of [Area] when used as a continuous detection area, often requiring waiting a couple of frames before collision information is available to [Area] nodes, and when using the signals creates unnecessary complexity. - The node can detect multiple collision objects, but it's usually used to detect the first collision. - [b]Note:[/b] Shape casting is more computationally expensive compared to ray casting. - - - - - - - - - Adds a collision exception so the shape does not report collisions with the specified [CollisionObject] node. - - - - - - - Adds a collision exception so the shape does not report collisions with the specified [RID]. - - - - - - Removes all collision exceptions for this [ShapeCast]. - - - - - - Updates the collision information for the shape. Use this method to update the collision information immediately instead of waiting for the next [code]_physics_process[/code] call, for example if the shape or its parent has changed state. - [b]Note:[/b] [code]enabled[/code] is not required for this to work. - - - - - - The fraction from the [ShapeCast]'s origin to its [member target_position] (between 0 and 1) of how far the shape can move without triggering a collision. - - - - - - The fraction from the [ShapeCast]'s origin to its [member target_position] (between 0 and 1) of how far the shape must move to trigger a collision. - - - - - - - Returns the collided [Object] of one of the multiple collisions at [code]index[/code], or [code]null[/code] if no object is intersecting the shape (i.e. [method is_colliding] returns [code]false[/code]). - - - - - - - Returns the [RID] of the collided object of one of the multiple collisions at [code]index[/code]. - - - - - - - Returns the shape ID of the colliding shape of one of the multiple collisions at [code]index[/code], or [code]0[/code] if no object is intersecting the shape (i.e. [method is_colliding] returns [code]false[/code]). - - - - - - The number of collisions detected at the point of impact. Use this to iterate over multiple collisions as provided by [method get_collider], [method get_collider_shape], [method get_collision_point], and [method get_collision_normal] methods. - - - - - - - Returns whether or not the specified layer of the [member collision_mask] is enabled, given a [code]layer_number[/code] between 1 and 32. - - - - - - - Returns the normal of one of the multiple collisions at [code]index[/code] of the intersecting object. - - - - - - - Returns the collision point of one of the multiple collisions at [code]index[/code] where the shape intersects the colliding object. - [b]Note:[/b] this point is in the [b]global[/b] coordinate system. - - - - - - Returns whether any object is intersecting with the shape's vector (considering the vector length). - - - - - - - Removes a collision exception so the shape does report collisions with the specified [CollisionObject] node. - - - - - - - Removes a collision exception so the shape does report collisions with the specified [RID]. - - - - - - - This method is used internally to update the debug gizmo in the editor. Any code placed in this function will be called whenever the [member shape] resource is modified. - - - - - - - - Based on [code]value[/code], enables or disables the specified layer in the [member collision_mask], given a [code]layer_number[/code] between 1 and 32. - - - - - - If [code]true[/code], collision with [Area]s will be reported. - - - If [code]true[/code], collision with [PhysicsBody]s will be reported. - - - The shape's collision mask. Only objects in at least one collision layer enabled in the mask will be detected. See [url=$DOCS_URL/tutorials/physics/physics_introduction.html#collision-layers-and-masks]Collision layers and masks[/url] in the documentation for more information. - - - Returns the complete collision information from the collision sweep. The data returned is the same as in the [method PhysicsDirectSpaceState.get_rest_info] method. - - - The custom color to use to draw the shape in the editor and at run-time if [b]Visible Collision Shapes[/b] is enabled in the [b]Debug[/b] menu. This color will be highlighted at run-time if the [ShapeCast] is colliding with something. - If set to [code]Color(0.0, 0.0, 0.0)[/code] (by default), the color set in [member ProjectSettings.debug/shapes/collision/shape_color] is used. - - - If [code]true[/code], collisions will be reported. - - - If [code]true[/code], the parent node will be excluded from collision detection. - - - The collision margin for the shape. A larger margin helps detecting collisions more consistently, at the cost of precision. - - - The number of intersections can be limited with this parameter, to reduce the processing time. - - - The [Shape] to be used for collision queries. - - - The shape's destination point, relative to this node's [code]position[/code]. - - - - - diff --git a/doc/classes/Sky.xml b/doc/classes/Sky.xml deleted file mode 100644 index 1166187..0000000 --- a/doc/classes/Sky.xml +++ /dev/null @@ -1,48 +0,0 @@ - - - - The base class for [PanoramaSky] and [ProceduralSky]. - - - The base class for [PanoramaSky] and [ProceduralSky]. - - - - - - - - The [Sky]'s radiance map size. The higher the radiance map size, the more detailed the lighting from the [Sky] will be. - See [enum RadianceSize] constants for values. - [b]Note:[/b] You will only benefit from high radiance sizes if you have perfectly sharp reflective surfaces in your project and are not using [ReflectionProbe]s or [GIProbe]s. For most projects, keeping [member radiance_size] to the default value is the best compromise between visuals and performance. Be careful when using high radiance size values as these can cause crashes on low-end GPUs. - - - - - Radiance texture size is 32×32 pixels. - - - Radiance texture size is 64×64 pixels. - - - Radiance texture size is 128×128 pixels. - - - Radiance texture size is 256×256 pixels. - - - Radiance texture size is 512×512 pixels. - - - Radiance texture size is 1024×1024 pixels. - [b]Note:[/b] [constant RADIANCE_SIZE_1024] is not exposed in the inspector as it is known to cause GPU hangs on certain systems. - - - Radiance texture size is 2048×2048 pixels. - [b]Note:[/b] [constant RADIANCE_SIZE_2048] is not exposed in the inspector as it is known to cause GPU hangs on certain systems. - - - Represents the size of the [enum RadianceSize] enum. - - - diff --git a/doc/classes/SliderJoint.xml b/doc/classes/SliderJoint.xml deleted file mode 100644 index f8e791d..0000000 --- a/doc/classes/SliderJoint.xml +++ /dev/null @@ -1,168 +0,0 @@ - - - - Slider between two PhysicsBodies in 3D. - - - Slides across the X axis of the pivot object. See also [Generic6DOFJoint]. - - - - - - - - - - - - - - - - - - - - - The amount of damping of the rotation when the limit is surpassed. - A lower damping value allows a rotation initiated by body A to travel to body B slower. - - - The lower limit of rotation in the slider. - - - The amount of restitution of the rotation when the limit is surpassed. - Does not affect damping. - - - A factor applied to the all rotation once the limit is surpassed. - Makes all rotation slower when between 0 and 1. - - - The upper limit of rotation in the slider. - - - The amount of damping of the rotation in the limits. - - - The amount of restitution of the rotation in the limits. - - - A factor applied to the all rotation in the limits. - - - The amount of damping of the rotation across axes orthogonal to the slider. - - - The amount of restitution of the rotation across axes orthogonal to the slider. - - - A factor applied to the all rotation across axes orthogonal to the slider. - - - The amount of damping that happens once the limit defined by [member linear_limit/lower_distance] and [member linear_limit/upper_distance] is surpassed. - - - The minimum difference between the pivot points on their X axis before damping happens. - - - The amount of restitution once the limits are surpassed. The lower, the more velocity-energy gets lost. - - - A factor applied to the movement across the slider axis once the limits get surpassed. The lower, the slower the movement. - - - The maximum difference between the pivot points on their X axis before damping happens. - - - The amount of damping inside the slider limits. - - - The amount of restitution inside the slider limits. - - - A factor applied to the movement across the slider axis as long as the slider is in the limits. The lower, the slower the movement. - - - The amount of damping when movement is across axes orthogonal to the slider. - - - The amount of restitution when movement is across axes orthogonal to the slider. - - - A factor applied to the movement across axes orthogonal to the slider. - - - - - The maximum difference between the pivot points on their X axis before damping happens. - - - The minimum difference between the pivot points on their X axis before damping happens. - - - A factor applied to the movement across the slider axis once the limits get surpassed. The lower, the slower the movement. - - - The amount of restitution once the limits are surpassed. The lower, the more velocityenergy gets lost. - - - The amount of damping once the slider limits are surpassed. - - - A factor applied to the movement across the slider axis as long as the slider is in the limits. The lower, the slower the movement. - - - The amount of restitution inside the slider limits. - - - The amount of damping inside the slider limits. - - - A factor applied to the movement across axes orthogonal to the slider. - - - The amount of restitution when movement is across axes orthogonal to the slider. - - - The amount of damping when movement is across axes orthogonal to the slider. - - - The upper limit of rotation in the slider. - - - The lower limit of rotation in the slider. - - - A factor applied to the all rotation once the limit is surpassed. - - - The amount of restitution of the rotation when the limit is surpassed. - - - The amount of damping of the rotation when the limit is surpassed. - - - A factor applied to the all rotation in the limits. - - - The amount of restitution of the rotation in the limits. - - - The amount of damping of the rotation in the limits. - - - A factor applied to the all rotation across axes orthogonal to the slider. - - - The amount of restitution of the rotation across axes orthogonal to the slider. - - - The amount of damping of the rotation across axes orthogonal to the slider. - - - Represents the size of the [enum Param] enum. - - - diff --git a/doc/classes/SoftBody.xml b/doc/classes/SoftBody.xml deleted file mode 100644 index a10fcbd..0000000 --- a/doc/classes/SoftBody.xml +++ /dev/null @@ -1,129 +0,0 @@ - - - - A soft mesh physics body. - - - A deformable physics body. Used to create elastic or deformable objects such as cloth, rubber, or other flexible materials. - [b]Note:[/b] There are many known bugs in [SoftBody]. Therefore, it's not recommended to use them for things that can affect gameplay (such as a player character made entirely out of soft bodies). - - - $DOCS_URL/tutorials/physics/soft_body.md - - - - - - - Adds a body to the list of bodies that this body can't collide with. - - - - - - Returns an array of nodes that were added as collision exceptions for this body. - - - - - - - Returns an individual bit on the collision mask. - - - - - - - Returns an individual bit on the collision mask. - - - - - - - Returns local translation of a vertex in the surface array. - - - - - - - Returns [code]true[/code] if vertex is set to pinned. - - - - - - - Removes a body from the list of bodies that this body can't collide with. - - - - - - - - Sets individual bits on the layer mask. Use this if you only need to change one layer's value. - - - - - - - - Sets individual bits on the collision mask. Use this if you only need to change one layer's value. - - - - - - - - - Sets the pinned state of a surface vertex. When set to [code]true[/code], the optional [code]attachment_path[/code] can define a [Spatial] the pinned vertex will be attached to. - - - - - - - - The physics layers this SoftBody is in. - Collidable objects can exist in any of 32 different layers. These layers work like a tagging system, and are not visual. A collidable can use these layers to select with which objects it can collide, using the collision_mask property. - A contact is detected if object A is in any of the layers that object B scans, or object B is in any layer scanned by object A. See [url=$DOCS_URL/tutorials/physics/physics_introduction.html#collision-layers-and-masks]Collision layers and masks[/url] in the documentation for more information. - - - The physics layers this SoftBody scans for collisions. See [url=$DOCS_URL/tutorials/physics/physics_introduction.html#collision-layers-and-masks]Collision layers and masks[/url] in the documentation for more information. - - - - - - - - - [NodePath] to a [CollisionObject] this SoftBody should avoid clipping. - - - If [code]true[/code], the [SoftBody] is simulated in physics. Can be set to [code]false[/code] to pause the physics simulation. - - - - - - - If [code]true[/code], the [SoftBody] will respond to [RayCast]s. - - - Increasing this value will improve the resulting simulation, but can affect performance. Use with care. - - - The SoftBody's mass. - - - - - - - diff --git a/doc/classes/Spatial.xml b/doc/classes/Spatial.xml deleted file mode 100644 index a7ce80b..0000000 --- a/doc/classes/Spatial.xml +++ /dev/null @@ -1,357 +0,0 @@ - - - - Most basic 3D game object, parent of all 3D-related nodes. - - - Most basic 3D game object, with a 3D [Transform] and visibility settings. All other 3D game objects inherit from Spatial. Use [Spatial] as a parent node to move, scale, rotate and show/hide children in a 3D project. - Affine operations (rotate, scale, translate) happen in parent's local coordinate system, unless the [Spatial] object is set as top-level. Affine operations in this coordinate system correspond to direct affine operations on the [Spatial]'s transform. The word local below refers to this coordinate system. The coordinate system that is attached to the [Spatial] object itself is referred to as object-local coordinate system. - [b]Note:[/b] Unless otherwise specified, all methods that have angle parameters must have angles specified as [i]radians[/i]. To convert degrees to radians, use [method @GDScript.deg2rad]. - - - $DOCS_URL/tutorials/3d/introduction_to_3d.md - https://github.com/Relintai/pandemonium_demo_projects/tree/master/3d - - - - - - - Attach a gizmo to this [code]Spatial[/code]. - - - - - - Clear all gizmos attached to this [code]Spatial[/code]. - - - - - - Clears subgizmo selection for this node in the editor. Useful when subgizmo IDs become invalid after a property change. - - - - - - Forces the transform to update. Transform changes in physics are not instant for performance reasons. Transforms are accumulated and then set. Use this if you need an up-to-date transform when doing physics operations. - - - - - - Returns all the gizmos attached to this [code]Spatial[/code]. - - - - - - When using physics interpolation, there will be circumstances in which you want to know the interpolated (displayed) transform of a node rather than the standard transform (which may only be accurate to the most recent physics tick). - This is particularly important for frame-based operations that take place in [method Node._process], rather than [method Node._physics_process]. Examples include [Camera]s focusing on a node, or finding where to fire lasers from on a frame rather than physics tick. - - - - - - Returns the parent [Spatial], or an empty [Object] if no parent exists or parent is not of type [Spatial]. - - - - - - Returns the current [World3D] resource this [Spatial] node is registered to. - - - - - - - - Rotates the global (world) transformation around axis, a unit [Vector3], by specified angle in radians. The rotation axis is in global coordinate system. - - - - - - - Scales the global (world) transformation by the given [Vector3] scale factors. - - - - - - - Moves the global (world) transformation by [Vector3] offset. The offset is in global coordinate system. - - - - - - Disables rendering of this node. Changes [member visible] to [code]false[/code]. - - - - - - Returns whether node notifies about its local transformation changes. [Spatial] will not propagate this by default. - - - - - - Returns whether this node uses a scale of [code](1, 1, 1)[/code] or its local transformation scale. - - - - - - Returns whether this node is set as Toplevel, that is whether it ignores its parent nodes transformations. - - - - - - Returns whether the node notifies about its global and local transformation changes. [Spatial] will not propagate this by default. - - - - - - Returns [code]true[/code] if the node is present in the [SceneTree], its [member visible] property is [code]true[/code] and all its ancestors are also visible. If any ancestor is hidden, this node will not be visible in the scene tree. - - - - - - - - Rotates the node so that the local forward axis (-Z) points toward the [code]target[/code] position. - The local up axis (+Y) points as close to the [code]up[/code] vector as possible while staying perpendicular to the local forward axis. The resulting transform is orthogonal, and the scale is preserved. Non-uniform scaling may not work correctly. - The [code]target[/code] position cannot be the same as the node's position, the [code]up[/code] vector cannot be zero, and the direction from the node's position to the [code]target[/code] vector cannot be parallel to the [code]up[/code] vector. - Operations take place in global space. - - - - - - - - - Moves the node to the specified [code]position[/code], and then rotates itself to point toward the [code]target[/code] as per [method look_at]. Operations take place in global space. - - - - - - Resets this node's transformations (like scale, skew and taper) preserving its rotation and translation by performing Gram-Schmidt orthonormalization on this node's [Transform]. - - - - - - - - Rotates the local transformation around axis, a unit [Vector3], by specified angle in radians. - - - - - - - - Rotates the local transformation around axis, a unit [Vector3], by specified angle in radians. The rotation axis is in object-local coordinate system. - - - - - - - Rotates the local transformation around the X axis by angle in radians. - - - - - - - Rotates the local transformation around the Y axis by angle in radians. - - - - - - - Rotates the local transformation around the Z axis by angle in radians. - - - - - - - Scales the local transformation by given 3D scale factors in object-local coordinate system. - - - - - - - Makes the node ignore its parents transformations. Node transformations are only in global space. - - - - - - - Sets whether the node uses a scale of [code](1, 1, 1)[/code] or its local transformation scale. Changes to the local transformation scale are preserved. - - - - - - Reset all transformations for this node (sets its [Transform] to the identity matrix). - - - - - - - Sets whether the node ignores notification that its transformation (global or local) changed. - - - - - - - Sets whether the node notifies about its local transformation changes. [Spatial] will not propagate this by default. - - - - - - - Sets whether the node notifies about its global and local transformation changes. [Spatial] will not propagate this by default, unless it is in the editor context and it has a valid gizmo. - - - - - - - - - Set subgizmo selection for this node in the editor. - - - - - - Enables rendering of this node. Changes [member visible] to [code]true[/code]. - - - - - - - Transforms [code]local_point[/code] from this node's local space to world space. - - - - - - - Transforms [code]global_point[/code] from world space to this node's local space. - - - - - - - Changes the node's position by the given offset [Vector3]. - Note that the translation [code]offset[/code] is affected by the node's scale, so if scaled by e.g. [code](10, 1, 1)[/code], a translation by an offset of [code](2, 0, 0)[/code] would actually add 20 ([code]2 * 10[/code]) to the X coordinate. - - - - - - - Changes the node's position by the given offset [Vector3] in local space. - - - - - - Updates all the [SpatialGizmo]s attached to this node. - - - - - - Rotation part of the global transformation in radians, specified in terms of YXZ-Euler angles in the format (X angle, Y angle, Z angle). - [b]Note:[/b] In the mathematical sense, rotation is a matrix and not a vector. The three Euler angles, which are the three independent parameters of the Euler-angle parametrization of the rotation matrix, are stored in a [Vector3] data structure not because the rotation is a vector, but only because [Vector3] exists as a convenient data-structure to store 3 floating-point numbers. Therefore, applying affine operations on the rotation "vector" is not meaningful. - - - World space (global) [Transform] of this node. - - - Global position of this node. This is equivalent to [code]global_transform.origin[/code]. - - - Rotation part of the local transformation in radians, specified in terms of YXZ-Euler angles in the format (X angle, Y angle, Z angle). - [b]Note:[/b] In the mathematical sense, rotation is a matrix and not a vector. The three Euler angles, which are the three independent parameters of the Euler-angle parametrization of the rotation matrix, are stored in a [Vector3] data structure not because the rotation is a vector, but only because [Vector3] exists as a convenient data-structure to store 3 floating-point numbers. Therefore, applying affine operations on the rotation "vector" is not meaningful. - - - Rotation part of the local transformation in degrees, specified in terms of YXZ-Euler angles in the format (X angle, Y angle, Z angle). - - - Scale part of the local transformation. - [b]Note:[/b] Mixed negative scales in 3D are not decomposable from the transformation matrix. Due to the way scale is represented with transformation matrices in Godot, the scale values will either be all positive or all negative. - [b]Note:[/b] Not all nodes are visually scaled by the [member scale] property. For example, [Light]s are not visually affected by [member scale]. - - - Local space [Transform] of this node, with respect to the parent node. - - - Local translation of this node. - - - If [code]true[/code], this node is drawn. The node is only visible if all of its ancestors are visible as well (in other words, [method is_visible_in_tree] must return [code]true[/code]). - - - - - - Emitted by portal system gameplay monitor when a node enters the gameplay area. - - - - - Emitted by portal system gameplay monitor when a node exits the gameplay area. - - - - - Emitted when node visibility changes. - - - - - - Spatial nodes receives this notification when their global transform changes. This means that either the current or a parent node changed its transform. - In order for [constant NOTIFICATION_TRANSFORM_CHANGED] to work, users first need to ask for it, with [method set_notify_transform]. The notification is also sent if the node is in the editor context and it has at least one valid gizmo. - - - Spatial nodes receives this notification when they are registered to new [World3D] resource. - - - Spatial nodes receives this notification when they are unregistered from current [World3D] resource. - - - Spatial nodes receives this notification when their visibility changes. - - - Spatial nodes receives this notification if the portal system gameplay monitor detects they have entered the gameplay area. - - - Spatial nodes receives this notification if the portal system gameplay monitor detects they have exited the gameplay area. - - - diff --git a/doc/classes/SpatialGizmo.xml b/doc/classes/SpatialGizmo.xml deleted file mode 100644 index da677ee..0000000 --- a/doc/classes/SpatialGizmo.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/doc/classes/SpatialMaterial.xml b/doc/classes/SpatialMaterial.xml deleted file mode 100644 index d8b8f6c..0000000 --- a/doc/classes/SpatialMaterial.xml +++ /dev/null @@ -1,666 +0,0 @@ - - - - Default 3D rendering material. - - - This provides a default material with a wide variety of rendering features and properties without the need to write shader code. See the tutorial below for details. - - - $DOCS_URL/tutorials/3d/spatial_material.md - - - - - - - Returns [code]true[/code], if the specified [enum Feature] is enabled. - - - - - - - Returns [code]true[/code], if the specified flag is enabled. See [enum Flags] enumerator for options. - - - - - - - Returns the [Texture] associated with the specified [enum TextureParam]. - - - - - - - - If [code]true[/code], enables the specified [enum Feature]. Many features that are available in [SpatialMaterial]s need to be enabled before use. This way the cost for using the feature is only incurred when specified. Features can also be enabled by setting the corresponding member to [code]true[/code]. - - - - - - - - If [code]true[/code], enables the specified flag. Flags are optional behavior that can be turned on and off. Only one flag can be enabled at a time with this function, the flag enumerators cannot be bit-masked together to enable or disable multiple flags at once. Flags can also be enabled by setting the corresponding member to [code]true[/code]. See [enum Flags] enumerator for options. - - - - - - - - Sets the [Texture] to be used by the specified [enum TextureParam]. This function is called when setting members ending in [code]*_texture[/code]. - - - - - - The material's base color. - - - Texture to multiply by [member albedo_color]. Used for basic texturing of objects. - - - The strength of the anisotropy effect. This is multiplied by [member anisotropy_flowmap]'s alpha channel if a texture is defined there and the texture contains an alpha channel. - - - If [code]true[/code], anisotropy is enabled. Anisotropy changes the shape of the specular blob and aligns it to tangent space. This is useful for brushed aluminium and hair reflections. - [b]Note:[/b] Mesh tangents are needed for anisotropy to work. If the mesh does not contain tangents, the anisotropy effect will appear broken. - [b]Note:[/b] Material anisotropy should not to be confused with anisotropic texture filtering. Anisotropic texture filtering can be enabled by selecting a texture in the FileSystem dock, going to the Import dock, checking the [b]Anisotropic[/b] checkbox then clicking [b]Reimport[/b]. The anisotropic filtering level can be changed by adjusting [member ProjectSettings.rendering/quality/filters/anisotropic_filter_level]. - - - Texture that offsets the tangent map for anisotropy calculations and optionally controls the anisotropy effect (if an alpha channel is present). The flowmap texture is expected to be a derivative map, with the red channel representing distortion on the X axis and green channel representing distortion on the Y axis. Values below 0.5 will result in negative distortion, whereas values above 0.5 will result in positive distortion. - If present, the texture's alpha channel will be used to multiply the strength of the [member anisotropy] effect. Fully opaque pixels will keep the anisotropy effect's original strength while fully transparent pixels will disable the anisotropy effect entirely. The flowmap texture's blue channel is ignored. - - - If [code]true[/code], ambient occlusion is enabled. Ambient occlusion darkens areas based on the [member ao_texture]. - - - Amount that ambient occlusion affects lighting from lights. If [code]0[/code], ambient occlusion only affects ambient light. If [code]1[/code], ambient occlusion affects lights just as much as it affects ambient light. This can be used to impact the strength of the ambient occlusion effect, but typically looks unrealistic. - - - If [code]true[/code], use [code]UV2[/code] coordinates to look up from the [member ao_texture]. - - - Texture that defines the amount of ambient occlusion for a given point on the object. - - - Specifies the channel of the [member ao_texture] in which the ambient occlusion information is stored. This is useful when you store the information for multiple effects in a single texture. For example if you stored metallic in the red channel, roughness in the blue, and ambient occlusion in the green you could reduce the number of textures you use. - - - If [member ProjectSettings.rendering/gles3/shaders/shader_compilation_mode] is [code]Synchronous[/code] (with or without cache), this determines how this material must behave in regards to asynchronous shader compilation. - [constant ASYNC_MODE_VISIBLE] is the default and the best for most cases. - - - Sets the strength of the clearcoat effect. Setting to [code]0[/code] looks the same as disabling the clearcoat effect. - - - If [code]true[/code], clearcoat rendering is enabled. Adds a secondary transparent pass to the lighting calculation resulting in an added specular blob. This makes materials appear as if they have a clear layer on them that can be either glossy or rough. - [b]Note:[/b] Clearcoat rendering is not visible if the material has [member flags_unshaded] set to [code]true[/code]. - - - Sets the roughness of the clearcoat pass. A higher value results in a smoother clearcoat while a lower value results in a rougher clearcoat. - - - Texture that defines the strength of the clearcoat effect and the glossiness of the clearcoat. Strength is specified in the red channel while glossiness is specified in the green channel. - - - If [code]true[/code], the shader will read depth texture at multiple points along the view ray to determine occlusion and parrallax. This can be very performance demanding, but results in more realistic looking depth mapping. - - - If [code]true[/code], depth mapping is enabled (also called "parallax mapping" or "height mapping"). See also [member normal_enabled]. - [b]Note:[/b] Depth mapping is not supported if triplanar mapping is used on the same material. The value of [member depth_enabled] will be ignored if [member uv1_triplanar] is enabled. - - - If [code]true[/code], direction of the binormal is flipped before using in the depth effect. This may be necessary if you have encoded your binormals in a way that is conflicting with the depth effect. - - - If [code]true[/code], direction of the tangent is flipped before using in the depth effect. This may be necessary if you have encoded your tangents in a way that is conflicting with the depth effect. - - - Number of layers to use when using [member depth_deep_parallax] and the view direction is perpendicular to the surface of the object. A higher number will be more performance demanding while a lower number may not look as crisp. - - - Number of layers to use when using [member depth_deep_parallax] and the view direction is parallel to the surface of the object. A higher number will be more performance demanding while a lower number may not look as crisp. - - - Scales the depth offset effect. A higher number will create a larger depth. - - - Texture used to determine depth at a given pixel. Depth is always stored in the red channel. - - - Texture that specifies the color of the detail overlay. - - - Specifies how the [member detail_albedo] should blend with the current [code]ALBEDO[/code]. See [enum BlendMode] for options. - - - If [code]true[/code], enables the detail overlay. Detail is a second texture that gets mixed over the surface of the object based on [member detail_mask]. This can be used to add variation to objects, or to blend between two different albedo/normal textures. - - - Texture used to specify how the detail textures get blended with the base textures. - - - Texture that specifies the per-pixel normal of the detail overlay. - [b]Note:[/b] Godot expects the normal map to use X+, Y+, and Z+ coordinates. See [url=http://wiki.polycount.com/wiki/Normal_Map_Technical_Details#Common_Swizzle_Coordinates]this page[/url] for a comparison of normal map coordinates expected by popular engines. - - - Specifies whether to use [code]UV[/code] or [code]UV2[/code] for the detail layer. See [enum DetailUV] for options. - - - Distance at which the object appears fully opaque. - [b]Note:[/b] If [code]distance_fade_max_distance[/code] is less than [code]distance_fade_min_distance[/code], the behavior will be reversed. The object will start to fade away at [code]distance_fade_max_distance[/code] and will fully disappear once it reaches [code]distance_fade_min_distance[/code]. - - - Distance at which the object starts to become visible. If the object is less than this distance away, it will be invisible. - [b]Note:[/b] If [code]distance_fade_min_distance[/code] is greater than [code]distance_fade_max_distance[/code], the behavior will be reversed. The object will start to fade away at [code]distance_fade_max_distance[/code] and will fully disappear once it reaches [code]distance_fade_min_distance[/code]. - - - Specifies which type of fade to use. Can be any of the [enum DistanceFadeMode]s. - - - The emitted light's color. See [member emission_enabled]. - - - If [code]true[/code], the body emits light. Emitting light makes the object appear brighter. The object can also cast light on other objects if a [GIProbe] or [BakedLightmap] is used and this object is used in baked lighting. - - - The emitted light's strength. See [member emission_enabled]. - - - Use [code]UV2[/code] to read from the [member emission_texture]. - - - Sets how [member emission] interacts with [member emission_texture]. Can either add or multiply. See [enum EmissionOperator] for options. - - - Texture that specifies how much surface emits light at a given point. - - - Forces a conversion of the [member albedo_texture] from sRGB space to linear space. - - - Enables signed distance field rendering shader. - - - If [code]true[/code], the object receives no ambient light. - - - If [code]true[/code], the object receives no shadow that would otherwise be cast onto it. - - - If [code]true[/code], the shader will compute extra operations to make sure the normal stays correct when using a non-uniform scale. Only enable if using non-uniform scaling. - - - If [code]true[/code], the object is rendered at the same size regardless of distance. - - - If [code]true[/code], depth testing is disabled and the object will be drawn in render order. - - - If [code]true[/code], transparency is enabled on the body. See also [member params_blend_mode]. - - - If [code]true[/code], the object is unaffected by lighting. - - - If [code]true[/code], render point size can be changed. - [b]Note:[/b] This is only effective for objects whose geometry is point-based rather than triangle-based. See also [member params_point_size]. - - - If [code]true[/code], enables the "shadow to opacity" render mode where lighting modifies the alpha so shadowed areas are opaque and non-shadowed areas are transparent. Useful for overlaying shadows onto a camera feed in AR. - - - If [code]true[/code], lighting is calculated per vertex rather than per pixel. This may increase performance on low-end devices, especially for meshes with a lower polygon count. The downside is that shading becomes much less accurate, with visible linear interpolation between vertices that are joined together. This can be compensated by ensuring meshes have a sufficient level of subdivision (but not too much, to avoid reducing performance). Some material features are also not supported when vertex shading is enabled. - See also [member ProjectSettings.rendering/quality/shading/force_vertex_shading] which can globally enable vertex shading on all materials. - [b]Note:[/b] By default, vertex shading is enforced on mobile platforms by [member ProjectSettings.rendering/quality/shading/force_vertex_shading]'s [code]mobile[/code] override. - [b]Note:[/b] [member flags_vertex_lighting] has no effect if [member flags_unshaded] is [code]true[/code]. - - - If [code]true[/code], triplanar mapping is calculated in world space rather than object local space. See also [member uv1_triplanar]. - - - A high value makes the material appear more like a metal. Non-metals use their albedo as the diffuse color and add diffuse to the specular reflection. With non-metals, the reflection appears on top of the albedo color. Metals use their albedo as a multiplier to the specular reflection and set the diffuse color to black resulting in a tinted reflection. Materials work better when fully metal or fully non-metal, values between [code]0[/code] and [code]1[/code] should only be used for blending between metal and non-metal sections. To alter the amount of reflection use [member roughness]. - - - Sets the size of the specular lobe. The specular lobe is the bright spot that is reflected from light sources. - [b]Note:[/b] Unlike [member metallic], this is not energy-conserving, so it should be left at [code]0.5[/code] in most cases. See also [member roughness]. - - - Texture used to specify metallic for an object. This is multiplied by [member metallic]. - - - Specifies the channel of the [member metallic_texture] in which the metallic information is stored. This is useful when you store the information for multiple effects in a single texture. For example if you stored metallic in the red channel, roughness in the blue, and ambient occlusion in the green you could reduce the number of textures you use. - - - If [code]true[/code], normal mapping is enabled. - - - The strength of the normal map's effect. - - - Texture used to specify the normal at a given pixel. The [code]normal_texture[/code] only uses the red and green channels; the blue and alpha channels are ignored. The normal read from [code]normal_texture[/code] is oriented around the surface normal provided by the [Mesh]. - [b]Note:[/b] The mesh must have both normals and tangents defined in its vertex data. Otherwise, the normal map won't render correctly and will only appear to darken the whole surface. If creating geometry with [SurfaceTool], you can use [method SurfaceTool.generate_normals] and [method SurfaceTool.generate_tangents] to automatically generate normals and tangents respectively. - [b]Note:[/b] Godot expects the normal map to use X+, Y+, and Z+ coordinates. See [url=http://wiki.polycount.com/wiki/Normal_Map_Technical_Details#Common_Swizzle_Coordinates]this page[/url] for a comparison of normal map coordinates expected by popular engines. - - - Threshold at which the alpha scissor will discard values. - - - If [code]true[/code], the shader will keep the scale set for the mesh. Otherwise the scale is lost when billboarding. Only applies when [member params_billboard_mode] is [constant BILLBOARD_ENABLED]. - - - Controls how the object faces the camera. See [enum BillboardMode]. - [b]Note:[/b] Billboard mode is not suitable for VR because the left-right vector of the camera is not horizontal when the screen is attached to your head instead of on the table. See [url=https://github.com/godotengine/godot/issues/41567]GitHub issue #41567[/url] for details. - - - The material's blend mode. - [b]Note:[/b] Values other than [code]Mix[/code] force the object into the transparent pipeline. See [enum BlendMode]. - - - Which side of the object is not drawn when backfaces are rendered. See [enum CullMode]. - - - Determines when depth rendering takes place. See [enum DepthDrawMode]. See also [member flags_transparent]. - - - The algorithm used for diffuse light scattering. See [enum DiffuseMode]. - - - If [code]true[/code], enables the vertex grow setting. See [member params_grow_amount]. - - - Grows object vertices in the direction of their normals. - - - Currently unimplemented in Godot. - - - The point size in pixels. See [member flags_use_point_size]. - - - The method for rendering the specular blob. See [enum SpecularMode]. - - - If [code]true[/code], the shader will discard all pixels that have an alpha value less than [member params_alpha_scissor_threshold]. - - - The number of horizontal frames in the particle sprite sheet. Only enabled when using [constant BILLBOARD_PARTICLES]. See [member params_billboard_mode]. - - - If [code]true[/code], particle animations are looped. Only enabled when using [constant BILLBOARD_PARTICLES]. See [member params_billboard_mode]. - - - The number of vertical frames in the particle sprite sheet. Only enabled when using [constant BILLBOARD_PARTICLES]. See [member params_billboard_mode]. - - - Distance over which the fade effect takes place. The larger the distance the longer it takes for an object to fade. - - - If [code]true[/code], the proximity fade effect is enabled. The proximity fade effect fades out each pixel based on its distance to another object. - - - If [code]true[/code], the refraction effect is enabled. Refraction distorts transparency based on light from behind the object. When using the GLES3 backend, the material's roughness value will affect the blurriness of the refraction. Higher roughness values will make the refraction look blurrier. - - - The strength of the refraction effect. Higher values result in a more distorted appearance for the refraction. - - - Texture that controls the strength of the refraction per-pixel. Multiplied by [member refraction_scale]. - - - Specifies the channel of the [member refraction_texture] in which the refraction information is stored. This is useful when you store the information for multiple effects in a single texture. For example if you stored metallic in the red channel, roughness in the blue, and ambient occlusion in the green you could reduce the number of textures you use. - - - Sets the strength of the rim lighting effect. - - - If [code]true[/code], rim effect is enabled. Rim lighting increases the brightness at glancing angles on an object. - [b]Note:[/b] Rim lighting is not visible if the material has [member flags_unshaded] set to [code]true[/code]. - - - Texture used to set the strength of the rim lighting effect per-pixel. Multiplied by [member rim]. - - - The amount of to blend light and albedo color when rendering rim effect. If [code]0[/code] the light color is used, while [code]1[/code] means albedo color is used. An intermediate value generally works best. - - - Surface reflection. A value of [code]0[/code] represents a perfect mirror while a value of [code]1[/code] completely blurs the reflection. See also [member metallic]. - - - Texture used to control the roughness per-pixel. Multiplied by [member roughness]. - - - Specifies the channel of the [member ao_texture] in which the ambient occlusion information is stored. This is useful when you store the information for multiple effects in a single texture. For example if you stored metallic in the red channel, roughness in the blue, and ambient occlusion in the green you could reduce the number of textures you use. - - - If [code]true[/code], subsurface scattering is enabled. Emulates light that penetrates an object's surface, is scattered, and then emerges. - - - The strength of the subsurface scattering effect. - - - Texture used to control the subsurface scattering strength. Stored in the red texture channel. Multiplied by [member subsurf_scatter_strength]. - - - The color used by the transmission effect. Represents the light passing through an object. - - - If [code]true[/code], the transmission effect is enabled. - - - Texture used to control the transmission effect per-pixel. Added to [member transmission]. - - - How much to offset the [code]UV[/code] coordinates. This amount will be added to [code]UV[/code] in the vertex function. This can be used to offset a texture. - - - How much to scale the [code]UV[/code] coordinates. This is multiplied by [code]UV[/code] in the vertex function. - - - If [code]true[/code], instead of using [code]UV[/code] textures will use a triplanar texture lookup to determine how to apply textures. Triplanar uses the orientation of the object's surface to blend between texture coordinates. It reads from the source texture 3 times, once for each axis and then blends between the results based on how closely the pixel aligns with each axis. This is often used for natural features to get a realistic blend of materials. Because triplanar texturing requires many more texture reads per-pixel it is much slower than normal UV texturing. Additionally, because it is blending the texture between the three axes, it is unsuitable when you are trying to achieve crisp texturing. - - - A lower number blends the texture more softly while a higher number blends the texture more sharply. - - - How much to offset the [code]UV2[/code] coordinates. This amount will be added to [code]UV2[/code] in the vertex function. This can be used to offset a texture. - - - How much to scale the [code]UV2[/code] coordinates. This is multiplied by [code]UV2[/code] in the vertex function. - - - If [code]true[/code], instead of using [code]UV2[/code] textures will use a triplanar texture lookup to determine how to apply textures. Triplanar uses the orientation of the object's surface to blend between texture coordinates. It reads from the source texture 3 times, once for each axis and then blends between the results based on how closely the pixel aligns with each axis. This is often used for natural features to get a realistic blend of materials. Because triplanar texturing requires many more texture reads per-pixel it is much slower than normal UV texturing. Additionally, because it is blending the texture between the three axes, it is unsuitable when you are trying to achieve crisp texturing. - - - A lower number blends the texture more softly while a higher number blends the texture more sharply. - - - If [code]true[/code], the model's vertex colors are processed as sRGB mode. - - - If [code]true[/code], the vertex color is used as albedo color. - - - - - Texture specifying per-pixel color. - - - Texture specifying per-pixel metallic value. - - - Texture specifying per-pixel roughness value. - - - Texture specifying per-pixel emission color. - - - Texture specifying per-pixel normal vector. - - - Texture specifying per-pixel rim value. - - - Texture specifying per-pixel clearcoat value. - - - Texture specifying per-pixel flowmap direction for use with [member anisotropy]. - - - Texture specifying per-pixel ambient occlusion value. - - - Texture specifying per-pixel depth. - - - Texture specifying per-pixel subsurface scattering. - - - Texture specifying per-pixel transmission color. - - - Texture specifying per-pixel refraction strength. - - - Texture specifying per-pixel detail mask blending value. - - - Texture specifying per-pixel detail color. - - - Texture specifying per-pixel detail normal. - - - Represents the size of the [enum TextureParam] enum. - - - Use [code]UV[/code] with the detail texture. - - - Use [code]UV2[/code] with the detail texture. - - - Constant for setting [member flags_transparent]. - - - Constant for setting [member emission_enabled]. - - - Constant for setting [member normal_enabled]. - - - Constant for setting [member rim_enabled]. - - - Constant for setting [member clearcoat_enabled]. - - - Constant for setting [member anisotropy_enabled]. - - - Constant for setting [member ao_enabled]. - - - Constant for setting [member depth_enabled]. - - - Constant for setting [member subsurf_scatter_enabled]. - - - Constant for setting [member transmission_enabled]. - - - Constant for setting [member refraction_enabled]. - - - Constant for setting [member detail_enabled]. - - - Represents the size of the [enum Feature] enum. - - - Default blend mode. The color of the object is blended over the background based on the object's alpha value. - - - The color of the object is added to the background. - - - The color of the object is subtracted from the background. - - - The color of the object is multiplied by the background. - - - Default depth draw mode. Depth is drawn only for opaque objects. - - - Depth draw is calculated for both opaque and transparent objects. - - - No depth draw. - - - For transparent objects, an opaque pass is made first with the opaque parts, then transparency is drawn. - - - Default cull mode. The back of the object is culled when not visible. - - - The front of the object is culled when not visible. - - - No culling is performed. - - - No lighting is used on the object. Color comes directly from [code]ALBEDO[/code]. - - - Lighting is calculated per-vertex rather than per-pixel. This can be used to increase the speed of the shader at the cost of quality. - - - Disables the depth test, so this object is drawn on top of all others. However, objects drawn after it in the draw order may cover it. - - - Set [code]ALBEDO[/code] to the per-vertex color specified in the mesh. - - - Vertex color is in sRGB space and needs to be converted to linear. Only applies in the GLES3 renderer. - - - Uses point size to alter the size of primitive points. Also changes the albedo texture lookup to use [code]POINT_COORD[/code] instead of [code]UV[/code]. - - - Object is scaled by depth so that it always appears the same size on screen. - - - Shader will keep the scale set for the mesh. Otherwise the scale is lost when billboarding. Only applies when [member params_billboard_mode] is [constant BILLBOARD_ENABLED]. - - - Use triplanar texture lookup for all texture lookups that would normally use [code]UV[/code]. - - - Use triplanar texture lookup for all texture lookups that would normally use [code]UV2[/code]. - - - Use [code]UV2[/code] coordinates to look up from the [member ao_texture]. - - - Use [code]UV2[/code] coordinates to look up from the [member emission_texture]. - - - Use alpha scissor. Set by [member params_use_alpha_scissor]. - - - Use world coordinates in the triplanar texture lookup instead of local coordinates. - - - Forces the shader to convert albedo from sRGB space to linear space. - - - Disables receiving shadows from other objects. - - - Disables receiving ambient light. - - - Ensures that normals appear correct, even with non-uniform scaling. - - - Enables the shadow to opacity feature. - - - Enables signed distance field rendering shader. - - - Represents the size of the [enum Flags] enum. - - - Default diffuse scattering algorithm. - - - Diffuse scattering ignores roughness. - - - Extends Lambert to cover more than 90 degrees when roughness increases. - - - Attempts to use roughness to emulate microsurfacing. - - - Uses a hard cut for lighting, with smoothing affected by roughness. - - - Default specular blob. - - - Older specular algorithm, included for compatibility. - - - Older specular algorithm, included for compatibility. - - - Toon blob which changes size based on roughness. - - - No specular blob. - - - Billboard mode is disabled. - - - The object's Z axis will always face the camera. - - - The object's X axis will always face the camera. - - - Used for particle systems when assigned to [Particles] and [CPUParticles] nodes. Enables [code]particles_anim_*[/code] properties. - The [member ParticlesMaterial.anim_speed] or [member CPUParticles.anim_speed] should also be set to a positive value for the animation to play. - - - Used to read from the red channel of a texture. - - - Used to read from the green channel of a texture. - - - Used to read from the blue channel of a texture. - - - Used to read from the alpha channel of a texture. - - - Currently unused. - - - Adds the emission color to the color from the emission texture. - - - Multiplies the emission color by the color from the emission texture. - - - Do not use distance fade. - - - Smoothly fades the object out based on each pixel's distance from the camera using the alpha channel. - - - Smoothly fades the object out based on each pixel's distance from the camera using a dither approach. Dithering discards pixels based on a set pattern to smoothly fade without enabling transparency. On certain hardware this can be faster than [constant DISTANCE_FADE_PIXEL_ALPHA]. - - - Smoothly fades the object out based on the object's distance from the camera using a dither approach. Dithering discards pixels based on a set pattern to smoothly fade without enabling transparency. On certain hardware this can be faster than [constant DISTANCE_FADE_PIXEL_ALPHA]. - - - The real conditioned shader needed on each situation will be sent for background compilation. In the meantime, a very complex shader that adapts to every situation will be used ("ubershader"). This ubershader is much slower to render, but will keep the game running without stalling to compile. Once shader compilation is done, the ubershader is replaced by the traditional optimized shader. - - - Anything with this material applied won't be rendered while this material's shader is being compiled. - This is useful for optimization, in cases where the visuals won't suffer from having certain non-essential elements missing during the short time their shaders are being compiled. - - - diff --git a/doc/classes/SpatialVelocityTracker.xml b/doc/classes/SpatialVelocityTracker.xml deleted file mode 100644 index 3f0158c..0000000 --- a/doc/classes/SpatialVelocityTracker.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/doc/classes/SphereShape.xml b/doc/classes/SphereShape.xml deleted file mode 100644 index 3eef779..0000000 --- a/doc/classes/SphereShape.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - Sphere shape for 3D collisions. - - - Sphere shape for 3D collisions, which can be set into a [PhysicsBody] or [Area]. This shape is useful for modeling sphere-like 3D objects. - - - https://godotengine.org/asset-library/asset/675 - - - - - - The sphere's radius. The shape's diameter is double the radius. - - - - - diff --git a/doc/classes/SpotLight.xml b/doc/classes/SpotLight.xml deleted file mode 100644 index 803e878..0000000 --- a/doc/classes/SpotLight.xml +++ /dev/null @@ -1,35 +0,0 @@ - - - - A spotlight, such as a reflector spotlight or a lantern. - - - A Spotlight is a type of [Light] node that emits lights in a specific direction, in the shape of a cone. The light is attenuated through the distance. This attenuation can be configured by changing the energy, radius and attenuation parameters of [Light]. - [b]Note:[/b] By default, only 32 SpotLights may affect a single mesh [i]resource[/i] at once. Consider splitting your level into several meshes to decrease the likelihood that more than 32 lights will affect the same mesh resource. Splitting the level mesh will also improve frustum culling effectiveness, leading to greater performance. If you need to use more lights per mesh, you can increase [member ProjectSettings.rendering/limits/rendering/max_lights_per_object] at the cost of shader compilation times. - - - $DOCS_URL/tutorials/3d/lights_and_shadows.md - https://godotengine.org/asset-library/asset/678 - - - - - - - The spotlight's angle in degrees. - [b]Note:[/b] [member spot_angle] is not affected by [member Spatial.scale] (the light's scale or its parent's scale). - - - The spotlight's angular attenuation curve. - - - The spotlight's light energy attenuation curve. - - - The maximal range that can be reached by the spotlight. Note that the effectively lit area may appear to be smaller depending on the [member spot_attenuation] in use. No matter the [member spot_attenuation] in use, the light will never reach anything outside this range. - [b]Note:[/b] [member spot_range] is not affected by [member Spatial.scale] (the light's scale or its parent's scale). - - - - - diff --git a/doc/classes/SpringArm.xml b/doc/classes/SpringArm.xml deleted file mode 100644 index 97ba727..0000000 --- a/doc/classes/SpringArm.xml +++ /dev/null @@ -1,62 +0,0 @@ - - - - A helper node, mostly used in 3rd person cameras. - - - The SpringArm node is a node that casts a ray (or collision shape) along its z axis and moves all its direct children to the collision point, minus a margin. - The most common use case for this is to make a 3rd person camera that reacts to collisions in the environment. - The SpringArm will either cast a ray, or if a shape is given, it will cast the shape in the direction of its z axis. - If you use the SpringArm as a camera controller for your player, you might need to exclude the player's collider from the SpringArm's collision check. - - - - - - - - - Adds the [PhysicsBody] object with the given [RID] to the list of [PhysicsBody] objects excluded from the collision check. - - - - - - Clears the list of [PhysicsBody] objects excluded from the collision check. - - - - - - Returns the spring arm's current length. - - - - - - - Removes the given [RID] from the list of [PhysicsBody] objects excluded from the collision check. - - - - - - The layers against which the collision check shall be done. See [url=$DOCS_URL/tutorials/physics/physics_introduction.html#collision-layers-and-masks]Collision layers and masks[/url] in the documentation for more information. - - - When the collision check is made, a candidate length for the SpringArm is given. - The margin is then subtracted to this length and the translation is applied to the child objects of the SpringArm. - This margin is useful for when the SpringArm has a [Camera] as a child node: without the margin, the [Camera] would be placed on the exact point of collision, while with the margin the [Camera] would be placed close to the point of collision. - - - The [Shape] to use for the SpringArm. - When the shape is set, the SpringArm will cast the [Shape] on its z axis instead of performing a ray cast. - - - The maximum extent of the SpringArm. This is used as a length for both the ray and the shape cast used internally to calculate the desired position of the SpringArm's child nodes. - To know more about how to perform a shape cast or a ray cast, please consult the [PhysicsDirectSpaceState] documentation. - - - - - diff --git a/doc/classes/Sprite3D.xml b/doc/classes/Sprite3D.xml deleted file mode 100644 index bab37e8..0000000 --- a/doc/classes/Sprite3D.xml +++ /dev/null @@ -1,45 +0,0 @@ - - - - 2D sprite node in a 3D world. - - - A node that displays a 2D texture in a 3D environment. The texture displayed can be a region from a larger atlas texture, or a frame from a sprite sheet animation. - - - - - - - - Current frame to display from sprite sheet. [member hframes] or [member vframes] must be greater than 1. - - - Coordinates of the frame to display from sprite sheet. This is as an alias for the [member frame] property. [member hframes] or [member vframes] must be greater than 1. - - - The number of columns in the sprite sheet. - - - If [code]true[/code], texture will be cut from a larger atlas texture. See [member region_rect]. - - - The region of the atlas texture to display. [member region_enabled] must be [code]true[/code]. - - - [Texture] object to draw. If [member GeometryInstance.material_override] is used, this will be overridden. The size information is still used. - - - The number of rows in the sprite sheet. - - - - - - Emitted when the [member frame] changes. - - - - - - diff --git a/doc/classes/SpriteBase3D.xml b/doc/classes/SpriteBase3D.xml deleted file mode 100644 index d1050fc..0000000 --- a/doc/classes/SpriteBase3D.xml +++ /dev/null @@ -1,117 +0,0 @@ - - - - 2D sprite node in 3D environment. - - - A node that displays 2D texture information in a 3D environment. - - - - - - - - - - - - - - Returns the value of the specified flag. - - - - - - Returns the rectangle representing this sprite. - - - - - - - - If [code]true[/code], the specified flag will be enabled. - - - - - - - - The direction in which the front of the texture faces. - - - - - If [code]true[/code], texture will be centered. - - - If [code]true[/code], texture can be seen from the back as well, if [code]false[/code], it is invisible when looking at it from behind. - - - If [code]true[/code], the label is rendered at the same size regardless of distance. - - - If [code]true[/code], texture is flipped horizontally. - - - If [code]true[/code], texture is flipped vertically. - - - A color value used to [i]multiply[/i] the texture's colors. Can be used for mood-coloring or to simulate the color of light. - [b]Note:[/b] If a [member GeometryInstance.material_override] is defined on the [SpriteBase3D], the material override must be configured to take vertex colors into account for albedo. Otherwise, the color defined in [member modulate] will be ignored. For a [SpatialMaterial], [member SpatialMaterial.vertex_color_use_as_albedo] must be [code]true[/code]. For a [ShaderMaterial], [code]ALBEDO *= COLOR.rgb;[/code] must be inserted in the shader's [code]fragment()[/code] function. - - - If [code]true[/code], depth testing is disabled and the object will be drawn in render order. - - - The texture's drawing offset. - - - The texture's visibility on a scale from [code]0[/code] (fully invisible) to [code]1[/code] (fully visible). [member opacity] is a multiplier for the [member modulate] color's alpha channel. - [b]Note:[/b] If a [member GeometryInstance.material_override] is defined on the [SpriteBase3D], the material override must be configured to take vertex colors into account for albedo. Otherwise, the opacity defined in [member opacity] will be ignored. For a [SpatialMaterial], [member SpatialMaterial.vertex_color_use_as_albedo] must be [code]true[/code]. For a [ShaderMaterial], [code]ALPHA *= COLOR.a;[/code] must be inserted in the shader's [code]fragment()[/code] function. - - - The size of one pixel's width on the sprite to scale it in 3D. - - - Sets the render priority for the sprite. Higher priority objects will be sorted in front of lower priority objects. - [b]Node:[/b] This only applies if [member alpha_cut] is set to [constant ALPHA_CUT_DISABLED] (default value). - [b]Note:[/b] This only applies to sorting of transparent objects. This will not impact how transparent objects are sorted relative to opaque objects. This is because opaque objects are not sorted, while transparent objects are sorted from back to front (subject to priority). - - - If [code]true[/code], the [Light] in the [Environment3D] has effects on the sprite. - - - If [code]true[/code], the texture's transparency and the opacity are used to make those parts of the sprite invisible. - - - - - If set, the texture's transparency and the opacity are used to make those parts of the sprite invisible. - - - If set, lights in the environment affect the sprite. - - - If set, texture can be seen from the back as well, if not, it is invisible when looking at it from behind. - - - Disables the depth test, so this object is drawn on top of all others. However, objects drawn after it in the draw order may cover it. - - - Sprite is scaled by depth so that it always appears the same size on screen. - - - Represents the size of the [enum DrawFlags] enum. - - - - - - - - - diff --git a/doc/classes/StaticBody.xml b/doc/classes/StaticBody.xml deleted file mode 100644 index 8f398ee..0000000 --- a/doc/classes/StaticBody.xml +++ /dev/null @@ -1,43 +0,0 @@ - - - - Physics body for 3D physics which is static or moves only by script. Useful for floor and walls. - - - Static body for 3D physics. - A static body is a simple body that doesn't move under physics simulation, i.e. it can't be moved by external forces or contacts but its transformation can still be updated manually by the user. It is ideal for implementing objects in the environment, such as walls or platforms. In contrast to [RigidBody], it doesn't consume any CPU resources as long as they don't move. - They have extra functionalities to move and affect other bodies: - [i]Static transform change:[/i] Static bodies can be moved by animation or script. In this case, they are just teleported and don't affect other bodies on their path. - [i]Constant velocity:[/i] When [member constant_linear_velocity] or [member constant_angular_velocity] is set, static bodies don't move themselves but affect touching bodies as if they were moving. This is useful for simulating conveyor belts or conveyor wheels. - [b]Warning:[/b] With a non-uniform scale this node will probably not function as expected. Please make sure to keep its scale uniform (i.e. the same on all axes), and change the size(s) of its collision shape(s) instead. - - - https://godotengine.org/asset-library/asset/675 - https://godotengine.org/asset-library/asset/678 - https://godotengine.org/asset-library/asset/676 - - - - - - The body's bounciness. Values range from [code]0[/code] (no bounce) to [code]1[/code] (full bounciness). - Deprecated, use [member PhysicsMaterial.bounce] instead via [member physics_material_override]. - - - The body's constant angular velocity. This does not rotate the body, but affects other bodies that touch it, as if it was in a state of rotation. - - - The body's constant linear velocity. This does not move the body, but affects other bodies that touch it, as if it was in a state of movement. - - - The body's friction, from 0 (frictionless) to 1 (full friction). - Deprecated, use [member PhysicsMaterial.friction] instead via [member physics_material_override]. - - - The physics material override for the body. - If a material is assigned to this property, it will be used instead of any other physics material, such as an inherited one. - - - - - diff --git a/doc/classes/StreamPeerSSL.xml b/doc/classes/StreamPeerSSL.xml index 9f77c8d..fe9d50e 100644 --- a/doc/classes/StreamPeerSSL.xml +++ b/doc/classes/StreamPeerSSL.xml @@ -51,7 +51,7 @@ - + diff --git a/doc/classes/SurfaceTool.xml b/doc/classes/SurfaceTool.xml index e3316ba..2610615 100644 --- a/doc/classes/SurfaceTool.xml +++ b/doc/classes/SurfaceTool.xml @@ -22,13 +22,6 @@ https://godotengine.org/asset-library/asset/676 - - - - - Specifies an array of bones to use for the [i]next[/i] vertex. [code]bones[/code] must contain 4 integers. - - @@ -99,13 +92,6 @@ Specifies the position of current vertex. Should be called after specifying other vertex properties (e.g. Color, UV). - - - - - Specifies weight values to use for the [i]next[/i] vertex. [code]weights[/code] must contain 4 values. If every vertex needs to have this information set and you fail to submit it for the first vertex, this information may not be used at all. - - @@ -132,7 +118,7 @@ - + Returns a constructed [ArrayMesh] from current information passed in. If an existing [ArrayMesh] is passed in as an argument, will add an extra surface to the existing [ArrayMesh]. Default flag is [constant Mesh.ARRAY_COMPRESS_DEFAULT] if compression is enabled. If compression is disabled the default flag is [constant Mesh.ARRAY_FLAG_USE_OCTAHEDRAL_COMPRESSION]. See [code]ARRAY_COMPRESS_*[/code] constants in [enum Mesh.ArrayFormat] for other flags. diff --git a/doc/classes/VehicleBody.xml b/doc/classes/VehicleBody.xml deleted file mode 100644 index 22a2171..0000000 --- a/doc/classes/VehicleBody.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - Physics body that simulates the behavior of a car. - - - This node implements all the physics logic needed to simulate a car. It is based on the raycast vehicle system commonly found in physics engines. You will need to add a [CollisionShape] for the main body of your vehicle and add [VehicleWheel] nodes for the wheels. You should also add a [MeshInstance] to this node for the 3D model of your car but this model should not include meshes for the wheels. You should control the vehicle by using the [member brake], [member engine_force], and [member steering] properties and not change the position or orientation of this node directly. - [b]Note:[/b] The origin point of your VehicleBody will determine the center of gravity of your vehicle so it is better to keep this low and move the [CollisionShape] and [MeshInstance] upwards. - [b]Note:[/b] This class has known issues and isn't designed to provide realistic 3D vehicle physics. If you want advanced vehicle physics, you will probably have to write your own physics integration using another [PhysicsBody] class. - [b]Warning:[/b] With a non-uniform scale this node will probably not function as expected. Please make sure to keep its scale uniform (i.e. the same on all axes), and change the size(s) of its collision shape(s) instead. - - - https://godotengine.org/asset-library/asset/524 - - - - - - Slows down the vehicle by applying a braking force. The vehicle is only slowed down if the wheels are in contact with a surface. The force you need to apply to adequately slow down your vehicle depends on the [member RigidBody.mass] of the vehicle. For a vehicle with a mass set to 1000, try a value in the 25 - 30 range for hard braking. - - - Accelerates the vehicle by applying an engine force. The vehicle is only speed up if the wheels that have [member VehicleWheel.use_as_traction] set to [code]true[/code] and are in contact with a surface. The [member RigidBody.mass] of the vehicle has an effect on the acceleration of the vehicle. For a vehicle with a mass set to 1000, try a value in the 25 - 50 range for acceleration. - [b]Note:[/b] The simulation does not take the effect of gears into account, you will need to add logic for this if you wish to simulate gears. - A negative value will result in the vehicle reversing. - - - - The steering angle for the vehicle. Setting this to a non-zero value will result in the vehicle turning when it's moving. Wheels that have [member VehicleWheel.use_as_steering] set to [code]true[/code] will automatically be rotated. - - - - - - diff --git a/doc/classes/VehicleWheel.xml b/doc/classes/VehicleWheel.xml deleted file mode 100644 index 7bfa1e1..0000000 --- a/doc/classes/VehicleWheel.xml +++ /dev/null @@ -1,89 +0,0 @@ - - - - Physics object that simulates the behavior of a wheel. - - - This node needs to be used as a child node of [VehicleBody] and simulates the behavior of one of its wheels. This node also acts as a collider to detect if the wheel is touching a surface. - [b]Note:[/b] This class has known issues and isn't designed to provide realistic 3D vehicle physics. If you want advanced vehicle physics, you will probably have to write your own physics integration using another [PhysicsBody] class. - - - https://godotengine.org/asset-library/asset/524 - - - - - - Returns the contacting body node if valid in the tree, as [Spatial]. At the moment, [GridMap] is not supported so the node will be always of type [PhysicsBody]. - Returns [code]null[/code] if the wheel is not in contact with a surface, or the contact body is not a [PhysicsBody]. - - - - - - Returns the rotational speed of the wheel in revolutions per minute. - - - - - - Returns a value between 0.0 and 1.0 that indicates whether this wheel is skidding. 0.0 is skidding (the wheel has lost grip, e.g. icy terrain), 1.0 means not skidding (the wheel has full grip, e.g. dry asphalt road). - - - - - - Returns [code]true[/code] if this wheel is in contact with a surface. - - - - - - Slows down the wheel by applying a braking force. The wheel is only slowed down if it is in contact with a surface. The force you need to apply to adequately slow down your vehicle depends on the [member RigidBody.mass] of the vehicle. For a vehicle with a mass set to 1000, try a value in the 25 - 30 range for hard braking. - - - The damping applied to the spring when the spring is being compressed. This value should be between 0.0 (no damping) and 1.0. A value of 0.0 means the car will keep bouncing as the spring keeps its energy. A good value for this is around 0.3 for a normal car, 0.5 for a race car. - - - The damping applied to the spring when relaxing. This value should be between 0.0 (no damping) and 1.0. This value should always be slightly higher than the [member damping_compression] property. For a [member damping_compression] value of 0.3, try a relaxation value of 0.5. - - - Accelerates the wheel by applying an engine force. The wheel is only speed up if it is in contact with a surface. The [member RigidBody.mass] of the vehicle has an effect on the acceleration of the vehicle. For a vehicle with a mass set to 1000, try a value in the 25 - 50 range for acceleration. - [b]Note:[/b] The simulation does not take the effect of gears into account, you will need to add logic for this if you wish to simulate gears. - A negative value will result in the wheel reversing. - - - The steering angle for the wheel. Setting this to a non-zero value will result in the vehicle turning when it's moving. - - - The maximum force the spring can resist. This value should be higher than a quarter of the [member RigidBody.mass] of the [VehicleBody] or the spring will not carry the weight of the vehicle. Good results are often obtained by a value that is about 3× to 4× this number. - - - This value defines the stiffness of the suspension. Use a value lower than 50 for an off-road car, a value between 50 and 100 for a race car and try something around 200 for something like a Formula 1 car. - - - This is the distance the suspension can travel. As Godot units are equivalent to meters, keep this setting relatively low. Try a value between 0.1 and 0.3 depending on the type of car. - - - If [code]true[/code], this wheel will be turned when the car steers. This value is used in conjunction with [member VehicleBody.steering] and ignored if you are using the per-wheel [member steering] value instead. - - - If [code]true[/code], this wheel transfers engine force to the ground to propel the vehicle forward. This value is used in conjunction with [member VehicleBody.engine_force] and ignored if you are using the per-wheel [member engine_force] value instead. - - - This determines how much grip this wheel has. It is combined with the friction setting of the surface the wheel is in contact with. 0.0 means no grip, 1.0 is normal grip. For a drift car setup, try setting the grip of the rear wheels slightly lower than the front wheels, or use a lower value to simulate tire wear. - It's best to set this to 1.0 when starting out. - - - The radius of the wheel in meters. - - - This is the distance in meters the wheel is lowered from its origin point. Don't set this to 0.0 and move the wheel into position, instead move the origin point of your wheel (the gizmo in Godot) to the position the wheel will take when bottoming out, then use the rest length to move the wheel down to the position it should be in when the car is in rest. - - - This value affects the roll of your vehicle. If set to 1.0 for all wheels, your vehicle will be prone to rolling over, while a value of 0.0 will resist body roll. - - - - - diff --git a/doc/classes/Viewport.xml b/doc/classes/Viewport.xml index b6307e0..de8e400 100644 --- a/doc/classes/Viewport.xml +++ b/doc/classes/Viewport.xml @@ -54,13 +54,6 @@ Returns information about the viewport from the rendering pipeline. - - - - - Returns the [enum ShadowAtlasQuadrantSubdiv] of the specified quadrant. - - @@ -138,14 +131,6 @@ Stops the input from propagating further down the [SceneTree]. - - - - - - Sets the number of subdivisions to use in the specified quadrant. A higher number of subdivisions allows you to have more shadows in the scene at once, but reduces the quality of the shadows. A good practice is to have quadrants with a varying number of subdivisions and to have as few subdivisions as possible. - - @@ -173,9 +158,6 @@ If [code]true[/code], the viewport will process 2D audio streams. - - If [code]true[/code], the viewport will process 3D audio streams. - If [code]true[/code], uses a fast post-processing filter to make banding significantly less visible in 3D. 2D rendering is [i]not[/i] affected by debanding unless the [member Environment.background_mode] is [constant Environment.BG_CANVAS]. In this case, [member usage] must also be set to [constant USAGE_3D]. See also [member ProjectSettings.rendering/quality/filters/use_debanding]. In some cases, debanding may introduce a slightly noticeable dithering pattern. It's recommended to enable debanding only when actually needed since the dithering pattern will make lossless-compressed screenshots larger. @@ -184,9 +166,6 @@ The overlay mode for test rendered geometry in debug purposes. - - If [code]true[/code], the viewport will disable 3D rendering. To actually disable allocation of 3D buffers, set [member usage] instead. - Enables fast approximate antialiasing. FXAA is a popular screen-space antialiasing method, which is fast but will make the image look blurry, especially at lower resolutions. It can still work relatively well at large resolutions such as 1440p and 4K. Some of the lost sharpness can be recovered by enabling contrast-adaptive sharpening (see [member sharpen_intensity]). @@ -203,9 +182,6 @@ [b]Note:[/b] Requires [member usage] to be set to [constant USAGE_3D] or [constant USAGE_3D_NO_EFFECTS], since HDR is not supported for 2D. [b]Note:[/b] Only available on the GLES3 backend. - - If [code]true[/code], the result after 3D rendering will not have a linear to sRGB color conversion applied. This is important when the viewport is used as a render target where the result is used as a texture on a 3D object rendered in another viewport. It is also important if the viewport is used to create data that is not color based (noise, heightmaps, pickmaps, etc.). Do not enable this when the viewport is used as a texture on a 2D object or if the viewport is your final output. For the GLES2 driver this will convert the sRGB output to linear, this should only be used for VR plugins that require input in linear color space! - The multisample anti-aliasing mode. A higher number results in smoother edges at the cost of significantly worse performance. A value of 4 is best unless targeting very high-end systems. @@ -225,22 +201,6 @@ If [code]true[/code], the result of rendering will be flipped vertically. Since Viewports in Godot 3.x render upside-down, it's recommended to set this to [code]true[/code] in most situations. - - The subdivision amount of the first quadrant on the shadow atlas. - - - The subdivision amount of the second quadrant on the shadow atlas. - - - The subdivision amount of the third quadrant on the shadow atlas. - - - The subdivision amount of the fourth quadrant on the shadow atlas. - - - The shadow atlas' resolution (used for omni and spot lights). The value will be rounded up to the nearest power of 2. - [b]Note:[/b] If this is set to [code]0[/code], both point [i]and[/i] directional shadows won't be visible. Since user-created viewports default to a value of [code]0[/code], this value must be set above [code]0[/code] manually (typically at least [code]256[/code]). - If set to a value greater than [code]0.0[/code], contrast-adaptive sharpening will be applied to the 3D viewport. This has a low performance cost and can be used to recover some of the sharpness lost from using FXAA. Values around [code]0.5[/code] generally give the best results. See also [member fxaa]. @@ -253,7 +213,7 @@ If [code]true[/code], the viewport should render its background as transparent. - + The viewport's rendering mode. This controls which buffers are allocated for the viewport (2D only, or 2D + 3D). 2D-only options can reduce memory usage and improve performance slightly, especially on low-end devices. [b]Note:[/b] If set to [constant USAGE_2D] or [constant USAGE_2D_NO_SAMPLING], [member hdr] will have no effect when enabled since HDR is not supported for 2D. @@ -289,30 +249,6 @@ Always update the render target. - - This quadrant will not be used. - - - This quadrant will only be used by one shadow map. - - - This quadrant will be split in 4 and used by up to 4 shadow maps. - - - This quadrant will be split 16 ways and used by up to 16 shadow maps. - - - This quadrant will be split 64 ways and used by up to 64 shadow maps. - - - This quadrant will be split 256 ways and used by up to 256 shadow maps. Unless the [member shadow_atlas_size] is very high, the shadows in this quadrant will be very low resolution. - - - This quadrant will be split 1024 ways and used by up to 1024 shadow maps. Unless the [member shadow_atlas_size] is very high, the shadows in this quadrant will be very low resolution. - - - Represents the size of the [enum ShadowAtlasQuadrantSubdiv] enum. - Amount of objects in frame. @@ -373,12 +309,6 @@ Allocates buffers needed for 2D scenes without allocating a buffer for screen copy. Accordingly, you cannot read from the screen. Of the [enum Usage] types, this requires the least VRAM. Note that 3D rendering effects such as glow and HDR are not available when using this mode. - - Allocates full buffers for drawing 3D scenes and all 3D effects including buffers needed for 2D scenes and effects. - - - Allocates buffers needed for drawing 3D scenes. But does not allocate buffers needed for reading from the screen and post-processing effects. Saves some VRAM. - Always clear the render target before drawing. diff --git a/doc/classes/VisibilityEnabler.xml b/doc/classes/VisibilityEnabler.xml deleted file mode 100644 index 43e97e3..0000000 --- a/doc/classes/VisibilityEnabler.xml +++ /dev/null @@ -1,50 +0,0 @@ - - - - Enables certain nodes only when approximately visible. - - - The VisibilityEnabler will disable [RigidBody] and [AnimationPlayer] nodes when they are not visible. It will only affect other nodes within the same scene as the VisibilityEnabler itself. - If you just want to receive notifications, use [VisibilityNotifier] instead. - [b]Note:[/b] VisibilityEnabler uses an approximate heuristic for performance reasons. It doesn't take walls and other occlusion into account (unless you are using [Portal]s). The heuristic is an implementation detail and may change in future versions. If you need precise visibility checking, use another method such as adding an [Area] node as a child of a [Camera] node and/or [method Vector3.dot]. - [b]Note:[/b] VisibilityEnabler will not affect nodes added after scene initialization. - - - - - - - - - Returns whether the enabler identified by given [enum Enabler] constant is active. - - - - - - - - Sets active state of the enabler identified by given [enum Enabler] constant. - - - - - - If [code]true[/code], [RigidBody] nodes will be paused. - - - If [code]true[/code], [AnimationPlayer] nodes will be paused. - - - - - This enabler will pause [AnimationPlayer] nodes. - - - This enabler will freeze [RigidBody] nodes. - - - Represents the size of the [enum Enabler] enum. - - - diff --git a/doc/classes/VisibilityNotifier.xml b/doc/classes/VisibilityNotifier.xml deleted file mode 100644 index bf0024a..0000000 --- a/doc/classes/VisibilityNotifier.xml +++ /dev/null @@ -1,57 +0,0 @@ - - - - Detects approximately when the node is visible on screen. - - - The VisibilityNotifier detects when it is visible on the screen. It also notifies when its bounding rectangle enters or exits the screen or a [Camera]'s view. - If you want nodes to be disabled automatically when they exit the screen, use [VisibilityEnabler] instead. - [b]Note:[/b] VisibilityNotifier uses an approximate heuristic for performance reasons. It doesn't take walls and other occlusion into account (unless you are using [Portal]s). The heuristic is an implementation detail and may change in future versions. If you need precise visibility checking, use another method such as adding an [Area] node as a child of a [Camera] node and/or [method Vector3.dot]. - - - - - - - - If [code]true[/code], the bounding box is on the screen. - [b]Note:[/b] It takes one frame for the node's visibility to be assessed once added to the scene tree, so this method will return [code]false[/code] right after it is instantiated, even if it will be on screen in the draw pass. - - - - - - The VisibilityNotifier's bounding box. - - - In addition to checking whether a node is on screen or within a [Camera]'s view, VisibilityNotifier can also optionally check whether a node is within a specified maximum distance when using a [Camera] with perspective projection. This is useful for throttling the performance requirements of nodes that are far away. - [b]Note:[/b] This feature will be disabled if set to 0.0. - - - - - - - Emitted when the VisibilityNotifier enters a [Camera]'s view. - - - - - - Emitted when the VisibilityNotifier exits a [Camera]'s view. - - - - - Emitted when the VisibilityNotifier enters the screen. - - - - - Emitted when the VisibilityNotifier exits the screen. - - - - - - diff --git a/doc/classes/VisualInstance.xml b/doc/classes/VisualInstance.xml deleted file mode 100644 index baa5db8..0000000 --- a/doc/classes/VisualInstance.xml +++ /dev/null @@ -1,75 +0,0 @@ - - - - Parent of all visual 3D nodes. - - - The [VisualInstance] is used to connect a resource to a visual representation. All visual 3D nodes inherit from the [VisualInstance]. In general, you should not access the [VisualInstance] properties directly as they are accessed and managed by the nodes that inherit from [VisualInstance]. [VisualInstance] is the node representation of the [RenderingServer] instance. - - - - - - - - Returns the [AABB] (also known as the bounding box) for this [VisualInstance]. See also [method get_transformed_aabb]. - - - - - - Returns the RID of the resource associated with this [VisualInstance]. For example, if the Node is a [MeshInstance], this will return the RID of the associated [Mesh]. - - - - - - Returns the RID of this instance. This RID is the same as the RID returned by [method RenderingServer.instance_create]. This RID is needed if you want to call [RenderingServer] functions directly on this [VisualInstance]. - - - - - - - Returns [code]true[/code] when the specified layer is enabled in [member layers] and [code]false[/code] otherwise. - - - - - - Returns the transformed [AABB] (also known as the bounding box) for this [VisualInstance]. - Transformed in this case means the [AABB] plus the position, rotation, and scale of the [Spatial]'s [Transform]. See also [method get_aabb]. - - - - - - - Sets the resource that is instantiated by this [VisualInstance], which changes how the engine handles the [VisualInstance] under the hood. Equivalent to [method RenderingServer.instance_set_base]. - - - - - - - - Enables a particular layer in [member layers]. - - - - - - The render layer(s) this [VisualInstance] is drawn on. - This object will only be visible for [Camera]s whose cull mask includes the render object this [VisualInstance] is set to. - - - The sorting offset used by this [VisualInstance]. Adjusting it to a higher value will make the [VisualInstance] reliably draw on top of other [VisualInstance]s that are otherwise positioned at the same spot. - - - If [code]true[/code], the object is sorted based on the [AABB] center. Sorted based on the global position otherwise. - The [AABB] center based sorting is generally more accurate for 3D models. The position based sorting instead allows to better control the drawing order when working with [Particles] and [CPUParticles]. - - - - - diff --git a/doc/classes/WindowServer.xml b/doc/classes/WindowServer.xml deleted file mode 100644 index ebd5223..0000000 --- a/doc/classes/WindowServer.xml +++ /dev/null @@ -1,199 +0,0 @@ - - - - - - - - - - - - - Centers the window on the screen if in windowed mode. - - - - - - - Returns internal structure pointers for use in GDNative plugins. - [b]Note:[/b] This method is implemented on Linux and Windows (other WindowServers will soon be supported). - - - - - - Returns the window size including decorations like window borders. - - - - - - Returns the number of displays attached to the host machine. - - - - - - - Returns the dots per inch density of the specified screen. If [code]screen[/code] is [code]-1[/code] (the default value), the current screen will be used. - [b]Note:[/b] On macWindowServer, returned value is inaccurate if fractional display scaling mode is used. - [b]Note:[/b] On Android devices, the actual screen densities are grouped into six generalized densities: - [codeblock] - ldpi - 120 dpi - mdpi - 160 dpi - hdpi - 240 dpi - xhdpi - 320 dpi - xxhdpi - 480 dpi - xxxhdpi - 640 dpi - [/codeblock] - [b]Note:[/b] This method is implemented on Android, Linux, macWindowServer and Windows. Returns [code]72[/code] on unsupported platforms. - - - - - - Return the greatest scale factor of all screens. - [b]Note:[/b] On macWindowServer returned value is [code]2.0[/code] if there is at least one hiDPI (Retina) screen in the system, and [code]1.0[/code] in all other cases. - [b]Note:[/b] This method is implemented on macWindowServer. - - - - - - - Returns the position of the specified screen by index. If [code]screen[/code] is [code]-1[/code] (the default value), the current screen will be used. - - - - - - - Returns the current refresh rate of the specified screen. If [code]screen[/code] is [code]-1[/code] (the default value), the current screen will be used. - [b]Note:[/b] Returns [code]-1.0[/code] if Pandemonium fails to find the refresh rate for the specified screen. On HTML5, [method get_screen_refresh_rate] will always return [code]-1.0[/code] as there is no way to retrieve the refresh rate on that platform. - To fallback to a default refresh rate if the method fails, try: - [codeblock] - var refresh_rate = WindowServer.get_screen_refresh_rate() - if refresh_rate < 0: - refresh_rate = 60.0 - [/codeblock] - - - - - - - Return the scale factor of the specified screen by index. If [code]screen[/code] is [code]-1[/code] (the default value), the current screen will be used. - [b]Note:[/b] On macWindowServer returned value is [code]2.0[/code] for hiDPI (Retina) screen, and [code]1.0[/code] for all other cases. - [b]Note:[/b] This method is implemented on macWindowServer. - - - - - - - Returns the dimensions in pixels of the specified screen. If [code]screen[/code] is [code]-1[/code] (the default value), the current screen will be used. - - - - - - Returns [code]true[/code] if the window should always be on top of other windows. - - - - - - Returns [code]true[/code] if the window is currently focused. - [b]Note:[/b] Only implemented on desktop platforms. On other platforms, it will always return [code]true[/code]. - - - - - - Moves the window to the front. - [b]Note:[/b] This method is implemented on Linux, macWindowServer and Windows. - - - - - - Request the user attention to the window. It'll flash the taskbar button on Windows or bounce the dock icon on WindowServerX. - [b]Note:[/b] This method is implemented on Linux, macWindowServer and Windows. - - - - - - - Sets whether the window should always be on top. - [b]Note:[/b] This method is implemented on Linux, macWindowServer and Windows. - - - - - - The current screen index (starting from 0). - - - The maximum size of the window (without counting window manager decorations). Does not affect fullscreen mode. Set to [code](0, 0)[/code] to reset to the system default value. - - - The minimum size of the window in pixels (without counting window manager decorations). Does not affect fullscreen mode. Set to [code](0, 0)[/code] to reset to the system's default value. - [b]Note:[/b] By default, the project window has a minimum size of [code]Vector2(64, 64)[/code]. This prevents issues that can arise when the window is resized to a near-zero size. - - - If [code]true[/code], removes the window frame. - [b]Note:[/b] Setting [code]window_borderless[/code] to [code]false[/code] disables per-pixel transparency. - - - If [code]true[/code], the window is fullscreen. - - - If [code]true[/code], the window is maximized. - - - If [code]true[/code], the window is minimized. - - - If [code]true[/code], the window background is transparent and the window frame is removed. - Use [code]get_tree().get_root().set_transparent_background(true)[/code] to disable main viewport background rendering. - [b]Note:[/b] This property has no effect if [member ProjectSettings.display/window/per_pixel_transparency/allowed] setting is disabled. - [b]Note:[/b] This property is implemented on HTML5, Linux, macWindowServer, Windows, and Android. It can't be changed at runtime for Android. Use [member ProjectSettings.display/window/per_pixel_transparency/enabled] to set it at startup instead. - - - The window position relative to the screen, the origin is the top left corner, +Y axis goes to the bottom and +X axis goes to the right. - - - If [code]true[/code], the window is resizable by the user. - - - The size of the window (without counting window manager decorations). - - - - - Display handle: - - Linux: [code]X11::Display*[/code] for the display - - - Window handle: - - Windows: [code]HWND[/code] of the main window - - Linux: [code]X11::Window*[/code] of the main window - - MacWindowServer: [code]NSWindow*[/code] of the main window (not yet implemented) - - Android: [code]jObject[/code] the main android activity (not yet implemented) - - - Window view: - - Windows: [code]HDC[/code] of the main window drawing context - - MacWindowServer: [code]NSView*[/code] of the main windows view (not yet implemented) - - - OpenGL Context: - - Windows: [code]HGLRC[/code] - - Linux: [code]X11::GLXContext[/code] - - MacWindowServer: [code]NSOpenGLContext*[/code] (not yet implemented) - - - diff --git a/doc/classes/World.xml b/doc/classes/World.xml index 0a62eef..08c5630 100644 --- a/doc/classes/World.xml +++ b/doc/classes/World.xml @@ -12,16 +12,6 @@ - - - - - - - - - - @@ -66,10 +56,6 @@ - - - - diff --git a/doc/classes/World2D.xml b/doc/classes/World2D.xml index 7b291d4..0bf29fa 100644 --- a/doc/classes/World2D.xml +++ b/doc/classes/World2D.xml @@ -18,9 +18,6 @@ Direct access to the world's physics 2D space state. Used for querying current and potential collisions. When using multi-threaded physics, access is limited to [code]_physics_process(delta)[/code] in the main thread. - - The [RID] of this world's navigation map. Used by the [Navigation2DServer]. - The [RID] of this world's physics space resource. Used by the [Physics2DServer] for 2D physics, treating it as both a space and an area. diff --git a/doc/classes/World3D.xml b/doc/classes/World3D.xml deleted file mode 100644 index 3e33f43..0000000 --- a/doc/classes/World3D.xml +++ /dev/null @@ -1,36 +0,0 @@ - - - - Class that has everything pertaining to a world. - - - Class that has everything pertaining to a world. A physics space, a visual scenario, a navigation map and a sound space. Spatial nodes register their resources into the current world. - - - $DOCS_URL/tutorials/physics/ray-casting.md - - - - - - Direct access to the world's physics 3D space state. Used for querying current and potential collisions. - - - The World's [Environment3D]. - - - The World's fallback_environment will be used if the World's [Environment3D] fails or is missing. - - - The [RID] of this world's navigation map. Used by the [NavigationServer]. - - - The World's visual scenario. - - - The World's physics space. - - - - - diff --git a/doc/classes/WorldEnvironment3D.xml b/doc/classes/WorldEnvironment3D.xml deleted file mode 100644 index e2ecbb9..0000000 --- a/doc/classes/WorldEnvironment3D.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - Default environment properties for the entire scene (post-processing effects, lighting and background settings). - - - The [WorldEnvironment3D] node is used to configure the default [Environment3D] for the scene. - The parameters defined in the [WorldEnvironment3D] can be overridden by an [Environment3D] node set on the current [Camera]. Additionally, only one [WorldEnvironment3D] may be instanced in a given scene at a time. - The [WorldEnvironment3D] allows the user to specify default lighting parameters (e.g. ambient lighting), various post-processing effects (e.g. SSAO, DOF, Tonemapping), and how to draw the background (e.g. solid color, skybox). Usually, these are added in order to improve the realism/color balance of the scene. - - - $DOCS_URL/tutorials/3d/environment_and_post_processing.md - https://godotengine.org/asset-library/asset/123 - https://godotengine.org/asset-library/asset/110 - https://godotengine.org/asset-library/asset/678 - - - - - - The [Environment3D] resource used by this [WorldEnvironment3D], defining the default properties. - - - - - diff --git a/modules/enet/doc_classes/NetworkedMultiplayerENet.xml b/modules/enet/doc_classes/NetworkedMultiplayerENet.xml index 0f7aab2..9cd0136 100644 --- a/modules/enet/doc_classes/NetworkedMultiplayerENet.xml +++ b/modules/enet/doc_classes/NetworkedMultiplayerENet.xml @@ -115,11 +115,6 @@ The number of channels to be used by ENet. Channels are used to separate different kinds of data. In reliable or ordered mode, for example, the packet delivery order is ensured on a per-channel basis. This is done to combat latency and reduces ordering restrictions on packets. The delivery status of a packet in one channel won't stall the delivery of other packets in another channel. - - The compression method used for network packets. These have different tradeoffs of compression speed versus bandwidth, you may need to test which one works best for your use case if you use compression at all. - [b]Note:[/b] Most games' network design involve sending many small packets frequently (smaller than 4 KB each). If in doubt, it is recommended to keep the default compression algorithm as it works best on these small packets. - [b]Note:[/b] [member compression_mode] must be set to the same value on both the server and all its clients. Clients will fail to connect if the [member compression_mode] set on the client differs from the one set on the server. Prior to Pandemonium 3.4, the default [member compression_mode] was [constant COMPRESS_NONE]. Nonetheless, mixing engine versions between clients and server is not recommended and not officially supported. - The hostname used for DTLS verification, to be compared against the "CN" value in the certificate provided by the server. When set to an empty string, the [code]address[/code] parameter passed to [method create_client] is used instead. @@ -139,20 +134,5 @@ - - No compression. This uses the most bandwidth, but has the upside of requiring the fewest CPU resources. This option may also be used to make network debugging using tools like Wireshark easier. - - - ENet's built-in range encoding. Works well on small packets, but is not the most efficient algorithm on packets larger than 4 KB. - - - [url=http://fastlz.org/]FastLZ[/url] compression. This option uses less CPU resources compared to [constant COMPRESS_ZLIB], at the expense of using more bandwidth. - - - [url=https://www.zlib.net/]Zlib[/url] compression. This option uses less bandwidth compared to [constant COMPRESS_FASTLZ], at the expense of using more CPU resources. Note that this algorithm is not very efficient on packets smaller than 4 KB. Therefore, it's recommended to use other compression algorithms in most cases. - - - [url=https://facebook.github.io/zstd/]Zstandard[/url] compression. -