GetSoundGain
From MaratisWiki
Revision as of 17:04, 8 February 2014 by Dahnielson (Talk | contribs)
getSoundGain(object)
Get the sound gain.
Example: Print the sound gain in the console:
Sound = getObject("Sound")
function onSceneUpdate()
SndGain = getSoundGain(Sound)
if isKeyPressed("A") then print(SndGain) end
end