Difference between revisions of "Sound"
From GiderosMobile
Line 28: | Line 28: | ||
<!-- GIDEROSMTD:Sound.setListenerPosition(x,y,z,vx,vy,vz,dx,dy,dz,ux,uy,uz) --> | <!-- GIDEROSMTD:Sound.setListenerPosition(x,y,z,vx,vy,vz,dx,dy,dz,ux,uy,uz) --> | ||
− | [[Special:MyLanguage/Sound:getLength|Sound:getLength]] <br/> | + | [[Special:MyLanguage/Sound:getLength|Sound:getLength]] ''Get the duration of this sound'' <br/> |
− | <!-- GIDEROSMTD:Sound:getLength() | + | <!-- GIDEROSMTD:Sound:getLength() Get the duration of this sound --> |
[[Special:MyLanguage/Sound:play|Sound:play]] ''<translate>creates a new SoundChannel object to play the sound</translate>''<br/> | [[Special:MyLanguage/Sound:play|Sound:play]] ''<translate>creates a new SoundChannel object to play the sound</translate>''<br/> | ||
<!-- GIDEROSMTD:Sound:play(startTime,looping,paused) creates a new SoundChannel object to play the sound --> | <!-- GIDEROSMTD:Sound:play(startTime,looping,paused) creates a new SoundChannel object to play the sound --> | ||
| style="width: 50%; vertical-align:top;"| | | style="width: 50%; vertical-align:top;"| | ||
+ | |||
=== <translate>Events</translate> === | === <translate>Events</translate> === | ||
=== <translate>Constants</translate> === | === <translate>Constants</translate> === |
Revision as of 08:29, 8 January 2021
Supported platforms:
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
local sound = Sound.new("music.mp3")
local channel = sound:play()
-- after some time --
channel:stop()
MethodsSound.new creates a new Sound object Sound:getLength Get the duration of this sound |
EventsConstants |