Difference between revisions of "love.audio.getPosition"

(Lemme' rewrite that)
m (Added note about sounds having to be mono for positional audio.)
 
(One intermediate revision by one other user 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 15: Line 15:
 
[[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