diff options
author | Brett Chalupa <brettchalupa@gmail.com> | 2023-03-10 11:39:28 -0500 |
---|---|---|
committer | Brett Chalupa <brettchalupa@gmail.com> | 2023-03-10 18:25:54 -0500 |
commit | 2b6e1550ffbbe8a5f0696f2ffbc657ed36e8faf2 (patch) | |
tree | 9c397eca57d2431f7944b84c93b82c41ed5e605b /doc/classes/CharacterBody2D.xml | |
parent | d8e242cba8fe33f2d4e3c3e4d5f08038ab063888 (diff) | |
download | redot-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.xml | 4 |
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 < GetSlideCollisionCount(); i++) |