Example #1
0
 /**
  * An internal function used to help organize and change the volume of the sound.
  */
 internal void updateTransform()
 {
     if (_sound == null)
     {
         return;
     }
     _sound.Volume = FlxG.getMuteValue() * FlxG.volume * _volume * _volumeAdjust;
 }