AudioSource.volume
var volume: float;
Description

The volume of the audio source (0.0 to 1.0).

	@script RequireComponent(AudioSource)
	function Start() {
		audio.volume = 0.2;
	}