AudioRolloffMode.Linear 线性
Description描述
Use this mode when you want to lower the volume of your sound over the distance
当你以距离降低声音的音量,使用这个模式。
using UnityEngine;
using System.Collections;
[RequireComponent(typeof(AudioSource))]
public class example : MonoBehaviour {
void Awake() {
audio.rolloffMode = AudioRolloffMode.Linear;
}
}
// Sets the rolloff of the audio source attached to
// this script to linear.
//设置音频源以线性方式衰减
@script RequireComponent(AudioSource)
audio.rolloffMode = AudioRolloffMode.Linear;
最后修改:2011年4月27日 Wednesday 10:51