Minor docs fix

This commit is contained in:
Poommetee Ketson 2017-12-29 19:11:27 +07:00
parent f11a138505
commit 7753b8ba0f
No known key found for this signature in database
GPG Key ID: A96C7CF5B077909D
3 changed files with 7 additions and 6 deletions

View File

@ -535,7 +535,7 @@
<argument index="0" name="path" type="String">
</argument>
<description>
Loads a resource from the filesystem located at 'path'. Note: resource paths can be obtained by right clicking on a resource in the Assets Panel and choosing "Copy Path".
Loads a resource from the filesystem located at [code]path[/code]. Note: resource paths can be obtained by right clicking on a resource in the Assets Panel and choosing "Copy Path".
[codeblock]
# load a scene called main located in the root of the project directory
var main = load("res://main.tscn")
@ -866,9 +866,10 @@
<argument index="0" name="s" type="float">
</argument>
<description>
Returns sign of [code]s[/code] -1 or 1.
Returns the sign of [code]s[/code]: -1 or 1. Returns 0 if [code]s[/code] is 0.
[codeblock]
sign(-6) # returns -1
sign(0) # returns 0
sign(6) # returns 1
[/codeblock]
</description>

View File

@ -216,7 +216,7 @@
<argument index="2" name="disable" type="bool">
</argument>
<description>
Disables a given shape in this area if [code]disable is true[/code]
Disables a given shape in an area.
</description>
</method>
<method name="area_set_shape_transform">
@ -638,7 +638,7 @@
<argument index="2" name="enable" type="bool">
</argument>
<description>
Enables one way collision on body if [code]enable is true[/code].
Enables one way collision on body if [code]enable[/code] is [code]true[/code].
</description>
</method>
<method name="body_set_shape_disabled">
@ -651,7 +651,7 @@
<argument index="2" name="disable" type="bool">
</argument>
<description>
Disables shape in body if [code]disable is true[/code].
Disables shape in body if [code]disable[/code] is [code]true[/code].
</description>
</method>
<method name="body_set_shape_metadata">

View File

@ -105,7 +105,7 @@
<return type="int">
</return>
<description>
Get an unsigned 16 bit value from the stream.
Get an unsigned 64 bit value from the stream.
</description>
</method>
<method name="get_u8">