AudioEchoFilter.delay 延迟

var delay : float

Description描述

Echo delay in ms. 10 to 5000. Default = 500.

以毫秒为单位回声延迟。10~5000,默认=500。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	void Start() {
		GetComponent<AudioEchoFilter>().delay = 5000;
	}
}
// Set the delay on the chorus filter to the max working value.
//在合声滤波器设置延迟到最大值
@script RequireComponent(AudioSource)
@script RequireComponent(AudioEchoFilter)

function Start() {
	GetComponent(AudioEchoFilter).delay = 5000;
}
最后修改:2011年1月10日 Monday 22:40

本脚本参考基于Unity 3.4.1f5

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