summaryrefslogtreecommitdiff
path: root/doc/classes
diff options
context:
space:
mode:
authorChris Bradfield <cb@scribe.net>2017-12-07 20:13:12 -0800
committerGitHub <noreply@github.com>2017-12-07 20:13:12 -0800
commit6f764d3f0a0353f7eff2c81d90f0dc2ce7418d1b (patch)
tree413732406f14ff91a40980f7b9c64c33ed72f15c /doc/classes
parentdcab01618ae9eaa18e16b377728125379a8f48bc (diff)
parent331427f55efe753d500461dfb5113be15d171520 (diff)
Merge pull request #14385 from NathanWarden/raycast_docs
[DOCS] Finished off the RayCast documentation.
Diffstat (limited to 'doc/classes')
-rw-r--r--doc/classes/RayCast.xml5
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/classes/RayCast.xml b/doc/classes/RayCast.xml
index e6f3c029af..20e262b664 100644
--- a/doc/classes/RayCast.xml
+++ b/doc/classes/RayCast.xml
@@ -77,6 +77,7 @@
<argument index="0" name="bit" type="int">
</argument>
<description>
+ Returns [code]true[/code] if the bit index passed is turned on. Note that bit indexes range from 0-19.
</description>
</method>
<method name="get_collision_normal" qualifiers="const">
@@ -126,6 +127,7 @@
<argument index="1" name="value" type="bool">
</argument>
<description>
+ Sets the bit index passed to the [code]value[/code] passed. Note that bit indexes range from 0-19.
</description>
</method>
</methods>
@@ -137,9 +139,10 @@
The ray's collision mask. Only objects in at least one collision layer enabled in the mask will be detected.
</member>
<member name="enabled" type="bool" setter="set_enabled" getter="is_enabled">
- If [code]true[/code], collisions will be reported. Default value: [code]false[/code].
+ If [code]true[/code] collisions will be reported. Default value: [code]false[/code].
</member>
<member name="exclude_parent" type="bool" setter="set_exclude_parent_body" getter="get_exclude_parent_body">
+ If [code]true[/code] collisions will be ignored for this RayCast's immediate parent. Default value: [code]true[/code].
</member>
</members>
<constants>