Difference between revisions of "SoundChannel:setVolume"

From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight")
Line 5: Line 5:
 
=== Description ===
 
=== Description ===
 
Sets the volume of the sound channel.
 
Sets the volume of the sound channel.
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
SoundChannel:setVolume(volume,balance)
 
SoundChannel:setVolume(volume,balance)
 
</source>
 
</source>
Line 14: Line 14:
  
 
=== Example ===
 
=== Example ===
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
local bulletsnd = Sound.new("audio/shoot.wav")
 
local bulletsnd = Sound.new("audio/shoot.wav")
 
local channel = bulletsnd:play()
 
local channel = bulletsnd:play()

Revision as of 15:31, 13 July 2023

Available since: Gideros 2011.6
Class: SoundChannel

Description

Sets the volume of the sound channel. <syntaxhighlight lang="lua"> SoundChannel:setVolume(volume,balance) </source>

Parameters

volume: (number) the sound channel new volume. Valid range of this parameter is between 0.0 and 1.0, where 1.0 is the maximum volume value
balance: (number) the sound channel new balance (new Gideros 2022.6)

Example

<syntaxhighlight lang="lua"> local bulletsnd = Sound.new("audio/shoot.wav") local channel = bulletsnd:play() channel:setVolume(0.5) </source>