Difference between revisions of "Sound"

From GiderosMobile
Line 19: Line 19:
 
| style="width: 50%;"|
 
| style="width: 50%;"|
 
=== Methods ===
 
=== Methods ===
[[Sound.new]] - creates a new Sound object<br/>
+
[[Sound.new]] {{<translate>creates a new Sound object</translate>}}<br/>
[[Sound.setListenerPosition]] - <br/>
+
[[Sound.setListenerPosition]] {{<translate></translate>}}<br/>
[[Sound:getLength]] - <br/>
+
[[Sound:getLength]] {{<translate></translate>}}<br/>
[[Sound:play]] - creates a new SoundChannel object to play the sound<br/>
+
[[Sound:play]] {{<translate>creates a new SoundChannel object to play the sound</translate>}}<br/>
 
| style="width: 50%;"|
 
| style="width: 50%;"|
 
=== Events ===
 
=== Events ===
 
=== Constants ===
 
=== Constants ===
 
|}
 
|}

Revision as of 15:20, 23 August 2018

Supported platforms: android, ios, mac, pc
Available since: Gideros 2011.6

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(&quot;music.mp3&quot;)

local channel = sound:play()

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

Methods

Sound.new Template:Creates a new Sound object
Sound.setListenerPosition {{}}
Sound:getLength {{}}
Sound:play Template:Creates a new SoundChannel object to play the sound

Events

Constants