Difference between revisions of "love.audio.getPosition"

(Corrected return parameters)
m (Added note about sounds having to be mono for positional audio.)
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
Returns the position of the listener.
+
Returns the position of the listener. Please note that positional audio only works for mono (i.e. non-stereo) sources.
 
== Function ==
 
== Function ==
 
=== Synopsis ===
 
=== Synopsis ===
Line 8: Line 8:
 
None.
 
None.
 
=== Returns ===
 
=== Returns ===
{{param|number|x|The listener position along the x-axis.}}
+
{{param|number|x|The X position of the listener.}}
{{param|number|y|The listener position along the y-axis.}}
+
{{param|number|y|The Y position of the listener.}}
{{param|number|z|The listener position along the z-axis.}}
+
{{param|number|z|The Z position of the listener.}}
 
== See Also ==
 
== See Also ==
 
* [[parent::love.audio]]
 
* [[parent::love.audio]]
 
[[Category:Functions]]
 
[[Category:Functions]]
 
{{#set:Description=Returns the position of the listener.}}
 
{{#set:Description=Returns the position of the listener.}}
 +
{{#set:Since=000}}
 
== Other Languages ==
 
== Other Languages ==
 
{{i18n|love.audio.getPosition}}
 
{{i18n|love.audio.getPosition}}

Latest revision as of 21:53, 15 August 2014

Returns the position of the listener. Please note that positional audio only works for mono (i.e. non-stereo) sources.

Function

Synopsis

x, y, z = love.audio.getPosition( )

Arguments

None.

Returns

number x
The X position of the listener.
number y
The Y position of the listener.
number z
The Z position of the listener.

See Also


Other Languages