Difference between revisions of "Source:setPosition"

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:
 
{{newin|[[0.7.0]]|070|type=function}}
 
{{newin|[[0.7.0]]|070|type=function}}
Sets the position of the Source.
+
Sets the position of the Source. Please note that this only works for mono (i.e. non-stereo) sound files!
 
== Function ==
 
== Function ==
 
=== Synopsis ===
 
=== Synopsis ===
Line 14: Line 14:
 
== See Also ==
 
== See Also ==
 
* [[parent::Source]]
 
* [[parent::Source]]
 +
* [[love.audio.setPosition]]
 
[[Category:Functions]]
 
[[Category:Functions]]
 
{{#set:Description=Sets the position of the Source.}}
 
{{#set:Description=Sets the position of the Source.}}
 
== Other Languages ==
 
== Other Languages ==
 
{{i18n|Source:setPosition}}
 
{{i18n|Source:setPosition}}

Latest revision as of 21:56, 15 August 2014

Available since LÖVE 0.7.0
This function is not supported in earlier versions.

Sets the position of the Source. Please note that this only works for mono (i.e. non-stereo) sound files!

Function

Synopsis

Source:setPosition( x, y, z )

Arguments

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

Returns

Nothing.

See Also

Other Languages