AudioRolloffMode.Custom 自定义
Description描述
Use this when you want to use a custom rolloff.
当你想使用自定义衰减,使用这个模式。
Note: Currently is not possible to modify the volume curve via scripting.
注意:目前无法通过脚本来修改音量曲线。
using UnityEngine;
using System.Collections;
[RequireComponent(typeof(AudioSource))]
public class example : MonoBehaviour {
void Awake() {
audio.rolloffMode = AudioRolloffMode.Custom;
}
}
// Sets the rolloff of the audio source attached to
// this script to custom.
//设置音频源以自定义方式衰减
@script RequireComponent(AudioSource)
audio.rolloffMode = AudioRolloffMode.Custom;
最后修改:2011年4月27日 Wednesday 11:01