AudioRolloffMode.Custom 自定义

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

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。