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…')
 
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
{{newin|[[0.7.0]]|type=function}}
+
{{newin|[[0.7.0]]|070|type=function}}
 
Gets the direction of the Source.
 
Gets the direction of the Source.
 
== Function ==
 
== Function ==
 
=== 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]]

Latest revision as of 09:11, 25 March 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