Sound

From GiderosMobile
Revision as of 10:28, 24 August 2018 by Hgy29 (talk | contribs)

Supported platforms: File:Platform androidFile:Platform iosFile:Platform macFile:Platform pc
Available since: Gideros 2011.6
Inherits from: Object

Description


The `Sound` class lets you load and play WAV, MP3, MOD, XM, S3M and IT sound files.
Control of the playing sound is performed through the `SoundChannel`
object.

Examples

Example

local sound = Sound.new("music.mp3")

local channel = sound:play()

-- after some time --
channel:stop()

Methods

Sound.new creates a new Sound object
Sound.setListenerPosition
Sound:getLength
Sound:play creates a new SoundChannel object to play the sound

Events

Constants