AudioSource.volume 音量
var volume : float
Description描述
The volume of the audio source.
音频源的音量。
using UnityEngine;
using System.Collections;
public class example : MonoBehaviour {
void Awake() {
audio.volume = 0.2F;
}
}
audio.volume = 0.2;
最后修改:2011年4月5日 Tuesday 11:04