diff options
author | Juan Linietsky <reduzio@gmail.com> | 2023-04-25 00:21:32 +0200 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2023-04-30 20:01:26 +0200 |
commit | 1c93606e470f0cad5f14af104ccb89a95a89931c (patch) | |
tree | fad6e8c9e15c3a3a211d4b2fff98a4e81a5ae2ca /doc | |
parent | 14c582bca81046fdde35e16088ddfd5df0136d56 (diff) | |
download | redot-engine-1c93606e470f0cad5f14af104ccb89a95a89931c.tar.gz |
Add ValidatedCall to MethodBind
* This should optimize GDScript function calling _enormously_.
* It also should simplify the GDScript VM considerably.
NOTE: GDExtension calling performance has most likely been affected until going via ptrcall is fixed.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/classes/AnimationNodeStateMachinePlayback.xml | 2 | ||||
-rw-r--r-- | doc/classes/Geometry3D.xml | 2 | ||||
-rw-r--r-- | doc/classes/Object.xml | 2 | ||||
-rw-r--r-- | doc/classes/RDShaderFile.xml | 2 | ||||
-rw-r--r-- | doc/classes/RenderingDevice.xml | 2 | ||||
-rw-r--r-- | doc/classes/RenderingServer.xml | 2 | ||||
-rw-r--r-- | doc/classes/SurfaceTool.xml | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/doc/classes/AnimationNodeStateMachinePlayback.xml b/doc/classes/AnimationNodeStateMachinePlayback.xml index 08634f650e..7d357a0f83 100644 --- a/doc/classes/AnimationNodeStateMachinePlayback.xml +++ b/doc/classes/AnimationNodeStateMachinePlayback.xml @@ -48,7 +48,7 @@ </description> </method> <method name="get_travel_path" qualifiers="const"> - <return type="PackedStringArray" /> + <return type="StringName[]" /> <description> Returns the current travel path as computed internally by the A* algorithm. </description> diff --git a/doc/classes/Geometry3D.xml b/doc/classes/Geometry3D.xml index 22df6f7a6e..b2fb4251bb 100644 --- a/doc/classes/Geometry3D.xml +++ b/doc/classes/Geometry3D.xml @@ -88,7 +88,7 @@ <return type="PackedVector3Array" /> <param index="0" name="from" type="Vector3" /> <param index="1" name="to" type="Vector3" /> - <param index="2" name="planes" type="Array" /> + <param index="2" name="planes" type="Plane[]" /> <description> Given a convex hull defined though the [Plane]s in the array [param planes], tests if the segment ([param from], [param to]) intersects with that hull. If an intersection is found, returns a [PackedVector3Array] containing the point the intersection and the hull's normal. Otherwise, returns an empty array. </description> diff --git a/doc/classes/Object.xml b/doc/classes/Object.xml index eea0161799..619276b154 100644 --- a/doc/classes/Object.xml +++ b/doc/classes/Object.xml @@ -597,7 +597,7 @@ </description> </method> <method name="get_meta_list" qualifiers="const"> - <return type="PackedStringArray" /> + <return type="StringName[]" /> <description> Returns the object's metadata entry names as a [PackedStringArray]. </description> diff --git a/doc/classes/RDShaderFile.xml b/doc/classes/RDShaderFile.xml index 0d2217b507..0a15e1048f 100644 --- a/doc/classes/RDShaderFile.xml +++ b/doc/classes/RDShaderFile.xml @@ -14,7 +14,7 @@ </description> </method> <method name="get_version_list" qualifiers="const"> - <return type="PackedStringArray" /> + <return type="StringName[]" /> <description> </description> </method> diff --git a/doc/classes/RenderingDevice.xml b/doc/classes/RenderingDevice.xml index f597cb7efc..ec25b0a515 100644 --- a/doc/classes/RenderingDevice.xml +++ b/doc/classes/RenderingDevice.xml @@ -152,7 +152,7 @@ <param index="6" name="clear_depth" type="float" default="1.0" /> <param index="7" name="clear_stencil" type="int" default="0" /> <param index="8" name="region" type="Rect2" default="Rect2(0, 0, 0, 0)" /> - <param index="9" name="storage_textures" type="Array" default="[]" /> + <param index="9" name="storage_textures" type="RID[]" default="[]" /> <description> </description> </method> diff --git a/doc/classes/RenderingServer.xml b/doc/classes/RenderingServer.xml index 5f9abe2cda..29a12467a8 100644 --- a/doc/classes/RenderingServer.xml +++ b/doc/classes/RenderingServer.xml @@ -1419,7 +1419,7 @@ </description> </method> <method name="global_shader_parameter_get_list" qualifiers="const"> - <return type="PackedStringArray" /> + <return type="StringName[]" /> <description> </description> </method> diff --git a/doc/classes/SurfaceTool.xml b/doc/classes/SurfaceTool.xml index a919bbdc6e..04452431c3 100644 --- a/doc/classes/SurfaceTool.xml +++ b/doc/classes/SurfaceTool.xml @@ -45,7 +45,7 @@ <param index="2" name="colors" type="PackedColorArray" default="PackedColorArray()" /> <param index="3" name="uv2s" type="PackedVector2Array" default="PackedVector2Array()" /> <param index="4" name="normals" type="PackedVector3Array" default="PackedVector3Array()" /> - <param index="5" name="tangents" type="Array" default="[]" /> + <param index="5" name="tangents" type="Plane[]" default="[]" /> <description> Inserts a triangle fan made of array data into [Mesh] being constructed. Requires the primitive type be set to [constant Mesh.PRIMITIVE_TRIANGLES]. |