Difference between revisions of "love.audio.getOrientation"

m (1 revision: Imported docs from potato.)
 
(4 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 
+
Returns the orientation of the listener.
 
 
 
== Function ==
 
== Function ==
 
=== Synopsis ===
 
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">
v = love.audio.getOrientation( )
+
fx, fy, fz, ux, uy, uz = love.audio.getOrientation( )
 
</source>
 
</source>
 
=== Arguments ===
 
=== Arguments ===
 
None.
 
None.
 
=== Returns ===
 
=== Returns ===
{{param|floatArray|v|A float array of size 6 containing [x,y,z] for the forward vector, followed by [x,y,z] for the up vector.}}
+
{{param|number|fx, fy, fz|Forward vector of the listener orientation.}}
 +
{{param|number|ux, uy, uz|Up vector of the listener orientation.}}
 
== See Also ==
 
== See Also ==
 
* [[parent::love.audio]]
 
* [[parent::love.audio]]
 
[[Category:Functions]]
 
[[Category:Functions]]
{{#set:Description=}}
+
{{#set:Description=Returns the orientation of the listener.}}
 +
{{#set:Since=000}}
 +
== Other Languages ==
 +
{{i18n|love.audio.getOrientation}}

Latest revision as of 09:27, 25 March 2011

Returns the orientation of the listener.

Function

Synopsis

fx, fy, fz, ux, uy, uz = love.audio.getOrientation( )

Arguments

None.

Returns

number fx, fy, fz
Forward vector of the listener orientation.
number ux, uy, uz
Up vector of the listener orientation.

See Also


Other Languages