Difference between revisions of "SoundChannel:setVolume"
From GiderosMobile
(added example) |
(added example) |
||
Line 19: | Line 19: | ||
channel:setVolume(0.5) | channel:setVolume(0.5) | ||
</source> | </source> | ||
− | |||
=== <translate>Parameters</translate> === | === <translate>Parameters</translate> === |
Revision as of 08:28, 15 November 2019
Available since: Gideros 2011.6
Class: SoundChannel
Description
Sets the volume of the sound channel.
SoundChannel:setVolume(volume)
Example
local bulletsnd = Sound.new("audio/shoot.wav")
local channel = bulletsnd:play()
channel:setVolume(0.5)
Parameters
volume: (number) The new volume of the sound channel. Valid range of this parameter is between 0.0 and 1.0, where 1.0 is the maximum volume value.