Difference between revisions of "Source:getDirection"

(Created page with '{{newin|0.7.0|type=function}} Gets the direction of the Source. == Function == === Synopsis === <source lang="lua"> direction = Source:getDirection( ) </source> === Arguments…')
 
(Corrected return parameters)
Line 4: Line 4:
 
=== Synopsis ===
 
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">
direction = Source:getDirection( )
+
x, y, z = Source:getDirection( )
 
</source>
 
</source>
 
=== Arguments ===
 
=== Arguments ===
 
None.
 
None.
 
=== Returns ===
 
=== Returns ===
{{param|number|direction|The direction of the Source.}}
+
{{param|number|x|The X part of the direction vector.}}
 +
{{param|number|y|The Y part of the direction vector.}}
 +
{{param|number|z|The Z part of the direction vector.}}
 
== See Also ==
 
== See Also ==
 
* [[parent::Source]]
 
* [[parent::Source]]

Revision as of 03:16, 5 February 2011

Available since LÖVE 0.7.0
This function is not supported in earlier versions.

Gets the direction of the Source.

Function

Synopsis

x, y, z = Source:getDirection( )

Arguments

None.

Returns

number x
The X part of the direction vector.
number y
The Y part of the direction vector.
number z
The Z part of the direction vector.

See Also

Other Languages