AudioClip.length 长度

var length : float

Description描述

The length of the audio clip in seconds (Read Only)

以秒为单位,音频剪辑的长度。(只读)

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	public IEnumerator Awake() {
		audio.Play();
		yield return new WaitForSeconds(audio.clip.length);
	}
}
audio.Play();
// Wait for the audio to have finished
//等待音频播放完成
yield WaitForSeconds (audio.clip.length);
最后修改:2011年1月13日 Thursday 15:29

本脚本参考基于Unity 3.4.1f5

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