summaryrefslogtreecommitdiffstats
path: root/doc/classes/CharacterBody2D.xml
diff options
context:
space:
mode:
authorBrett Chalupa <brettchalupa@gmail.com>2023-03-10 11:39:28 -0500
committerBrett Chalupa <brettchalupa@gmail.com>2023-03-10 18:25:54 -0500
commit2b6e1550ffbbe8a5f0696f2ffbc657ed36e8faf2 (patch)
tree9c397eca57d2431f7944b84c93b82c41ed5e605b /doc/classes/CharacterBody2D.xml
parentd8e242cba8fe33f2d4e3c3e4d5f08038ab063888 (diff)
downloadredot-engine-2b6e1550ffbbe8a5f0696f2ffbc657ed36e8faf2.tar.gz
Fix CharacterBody2D get_slide_collision docs
The indentation was off and the code usage was incorrect for Godot 4.0 GDScript.
Diffstat (limited to 'doc/classes/CharacterBody2D.xml')
-rw-r--r--doc/classes/CharacterBody2D.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/classes/CharacterBody2D.xml b/doc/classes/CharacterBody2D.xml
index 40e777ca26..c3bca0a585 100644
--- a/doc/classes/CharacterBody2D.xml
+++ b/doc/classes/CharacterBody2D.xml
@@ -73,8 +73,8 @@
[codeblocks]
[gdscript]
for i in get_slide_collision_count():
- var collision = get_slide_collision(i)
- print("Collided with: ", collision.collider.name)
+ var collision = get_slide_collision(i)
+ print("Collided with: ", collision.get_collider().name)
[/gdscript]
[csharp]
for (int i = 0; i &lt; GetSlideCollisionCount(); i++)