You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
Merge pull request #112180 from Calinou/doc-characterbody-get-last-slide-collision
Document `CharacterBody.get_last_slide_collision()` returning `null` with no collision
This commit is contained in:
@@ -45,7 +45,7 @@
|
|||||||
<method name="get_last_slide_collision">
|
<method name="get_last_slide_collision">
|
||||||
<return type="KinematicCollision2D" />
|
<return type="KinematicCollision2D" />
|
||||||
<description>
|
<description>
|
||||||
Returns a [KinematicCollision2D], which contains information about the latest collision that occurred during the last call to [method move_and_slide].
|
Returns a [KinematicCollision2D] if a collision occurred. The returned value contains information about the latest collision that occurred during the last call to [method move_and_slide]. Returns [code]null[/code] if no collision occurred. See also [method get_slide_collision].
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
<method name="get_platform_velocity" qualifiers="const">
|
<method name="get_platform_velocity" qualifiers="const">
|
||||||
@@ -70,7 +70,7 @@
|
|||||||
<return type="KinematicCollision2D" />
|
<return type="KinematicCollision2D" />
|
||||||
<param index="0" name="slide_idx" type="int" />
|
<param index="0" name="slide_idx" type="int" />
|
||||||
<description>
|
<description>
|
||||||
Returns a [KinematicCollision2D], which contains information about a collision that occurred during the last call to [method move_and_slide]. 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_collision_count] - 1).
|
Returns a [KinematicCollision2D], which contains information about a collision that occurred during the last call to [method move_and_slide]. 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_collision_count] - 1). See also [method get_last_slide_collision].
|
||||||
[b]Example:[/b] Iterate through the collisions with a [code]for[/code] loop:
|
[b]Example:[/b] Iterate through the collisions with a [code]for[/code] loop:
|
||||||
[codeblocks]
|
[codeblocks]
|
||||||
[gdscript]
|
[gdscript]
|
||||||
|
|||||||
@@ -46,7 +46,7 @@
|
|||||||
<method name="get_last_slide_collision">
|
<method name="get_last_slide_collision">
|
||||||
<return type="KinematicCollision3D" />
|
<return type="KinematicCollision3D" />
|
||||||
<description>
|
<description>
|
||||||
Returns a [KinematicCollision3D], which contains information about the latest collision that occurred during the last call to [method move_and_slide].
|
Returns a [KinematicCollision3D] if a collision occurred. The returned value contains information about the latest collision that occurred during the last call to [method move_and_slide]. Returns [code]null[/code] if no collision occurred. See also [method get_slide_collision].
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
<method name="get_platform_angular_velocity" qualifiers="const">
|
<method name="get_platform_angular_velocity" qualifiers="const">
|
||||||
@@ -77,7 +77,7 @@
|
|||||||
<return type="KinematicCollision3D" />
|
<return type="KinematicCollision3D" />
|
||||||
<param index="0" name="slide_idx" type="int" />
|
<param index="0" name="slide_idx" type="int" />
|
||||||
<description>
|
<description>
|
||||||
Returns a [KinematicCollision3D], which contains information about a collision that occurred during the last call to [method move_and_slide]. 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_collision_count] - 1).
|
Returns a [KinematicCollision3D], which contains information about a collision that occurred during the last call to [method move_and_slide]. 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_collision_count] - 1). See also [method get_last_slide_collision].
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
<method name="get_slide_collision_count" qualifiers="const">
|
<method name="get_slide_collision_count" qualifiers="const">
|
||||||
|
|||||||
Reference in New Issue
Block a user