Difference between revisions of "love.audio"

Line 20: Line 20:
 
* [[parent::love]]
 
* [[parent::love]]
 
* [[Tutorial:Audio]]
 
* [[Tutorial:Audio]]
 
+
{{#set:Since=000}}
 
== Other Languages ==
 
== Other Languages ==
 
{{i18n|love.audio}}
 
{{i18n|love.audio}}

Revision as of 09:31, 25 March 2011

Provides an interface to create noise with the user's speakers.

Types

SourceA Source represents audio you can play back.

Functions

love.audio.getNumSourcesGets the current number of simultaneously playing sources.
love.audio.getOrientationReturns the orientation of the listener.
love.audio.getPositionReturns the position of the listener.
love.audio.getVelocityReturns the velocity of the listener.
love.audio.getVolumeReturns the master volume.
love.audio.newSourceCreates a new Source from a file, SoundData, or Decoder.
love.audio.pausePauses specific or all currently played Sources.
love.audio.playPlays the specified Source.
love.audio.resumeResumes all audio.
love.audio.rewindRewinds all playing audio.
love.audio.setOrientationSets the orientation of the listener.
love.audio.setPositionSets the position of the listener.
love.audio.setVelocitySets the velocity of the listener.
love.audio.setVolumeSets the master volume.
love.audio.stopStops currently played sources.

Enums

SourceTypeTypes of audio sources.

See Also

Other Languages