From b2bd9f4e5109aa8112793b103228632a0e563d65 Mon Sep 17 00:00:00 2001 From: PouleyKetchoupp Date: Tue, 1 Jun 2021 19:11:56 -0700 Subject: Safe margin cleanup Safe margin property on CharacterBody only, used as argument in move_and_collide. Removed kinematic_safe_margin in 3D physics server, not really useful and now harmonized with 2D. --- doc/classes/CharacterBody2D.xml | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'doc/classes/CharacterBody2D.xml') diff --git a/doc/classes/CharacterBody2D.xml b/doc/classes/CharacterBody2D.xml index 7858b0a68e..412d05080b 100644 --- a/doc/classes/CharacterBody2D.xml +++ b/doc/classes/CharacterBody2D.xml @@ -95,6 +95,12 @@ + + Extra margin used for collision recovery when calling [method move_and_slide]. + 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 character bodies. + Maximum angle (in radians) where a slope is still considered a floor (or a ceiling), rather than a wall, when calling [method move_and_slide]. The default value equals 45 degrees. -- cgit v1.2.3