diff options
| author | BrunoSXS <trustmeiamadeveloper@gmail.com> | 2023-03-08 10:03:25 -0300 |
|---|---|---|
| committer | BrunoSXS <trustmeiamadeveloper@gmail.com> | 2023-03-08 10:17:14 -0300 |
| commit | df0de07494bae7576299bae781644ad8db7cc128 (patch) | |
| tree | 431e99aabd8f4bb7956e671f414aa647843016ec | |
| parent | dac2d8fb4214d3394bfb33b28f35f6d1e61518a8 (diff) | |
| download | redot-engine-df0de07494bae7576299bae781644ad8db7cc128.tar.gz | |
Fix for AABB methods with wrong description
| -rw-r--r-- | doc/classes/AABB.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/classes/AABB.xml b/doc/classes/AABB.xml index 35a5629af5..f85a055db5 100644 --- a/doc/classes/AABB.xml +++ b/doc/classes/AABB.xml @@ -188,7 +188,7 @@ <param index="0" name="from" type="Vector3" /> <param index="1" name="dir" type="Vector3" /> <description> - Returns [code]true[/code] if the given ray intersects with this [AABB]. Ray length is infinite. + Returns the point of intersection of the given ray with this [AABB] or [code]null[/code] if there is no intersection. Ray length is infinite. </description> </method> <method name="intersects_segment" qualifiers="const"> @@ -196,7 +196,7 @@ <param index="0" name="from" type="Vector3" /> <param index="1" name="to" type="Vector3" /> <description> - Returns [code]true[/code] if the [AABB] intersects the line segment between [param from] and [param to]. + Returns the point of intersection between [param from] and [param to] with this [AABB] or [code]null[/code] if there is no intersection. </description> </method> <method name="is_equal_approx" qualifiers="const"> |
