Difference between revisions of "love.audio.setOrientation"

m (1 revision: Imported docs from potato.)
 
(4 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 
+
Sets the orientation of the listener.
 
 
 
== Function ==
 
== Function ==
 
=== Synopsis ===
 
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">
love.audio.setOrientation( v )
+
love.audio.setOrientation( fx, fy, fz, ux, uy, uz )
 
</source>
 
</source>
 
=== Arguments ===
 
=== Arguments ===
{{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.}}
 
=== Returns ===
 
=== Returns ===
 
Nothing.
 
Nothing.
Line 13: Line 13:
 
* [[parent::love.audio]]
 
* [[parent::love.audio]]
 
[[Category:Functions]]
 
[[Category:Functions]]
{{#set:Description=}}
+
{{#set:Description=Sets the orientation of the listener.}}
 +
{{#set:Since=000}}
 +
== Other Languages ==
 +
{{i18n|love.audio.setOrientation}}

Latest revision as of 09:28, 25 March 2011

Sets the orientation of the listener.

Function

Synopsis

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

Arguments

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

Returns

Nothing.

See Also


Other Languages