WWW.GetAudioClip 获取音频剪辑
function GetAudioClip (threeD : boolean) : AudioClip
Parameters参数
-
threeDUse this to specify whether the clip should be a 2D or 3D clip. The .audioClip property defaults to 3D.
使用这个参数指定剪辑可以是2D或3D音频剪辑。.audioClip属性默认为3D。
Description描述
Returns a AudioClip generated from the downloaded data (Read Only).
从下载数据,返回一个AudioClip(只读)。
The data must be an audio clip in Ogg(Web/Standalones), MP3(phones), WAV, XM, IT, MOD or S3M format. The clip will be downloaded completely before it's ready to play. Use the overloaded GetAudioClip (bool threeD, bool stream) to stream the audio, instead of downloading the entire clip.
数据必须是Ogg(Web/Standalones), MP3(phones), WAV, XM, IT, MOD 或 S3M格式的音频剪辑。在准备播放之前剪辑将完全下载。使用重载GetAudioClip(bool threeD, bool stream) 到流音频,而需要下载整个剪辑。
using UnityEngine;
using System.Collections;
public class example : MonoBehaviour {
public string url;
void Start() {
WWW www = new WWW(url);
audio.clip = www.audioClip;
}
void Update() {
if (!audio.isPlaying && audio.clip.isReadyToPlay)
audio.Play();
}
}
var url : String;
function Start () {
var www = new WWW(url);
audio.clip = www.audioClip;
}
function Update () {
if(!audio.isPlaying && audio.clip.isReadyToPlay)
audio.Play();
}
Returns a AudioClip generated from the downloaded data (Read Only). The data must be an audio clip in Ogg(Web/Standalones), MP3(phones), WAV, XM, IT, MOD or S3M format.
从下载数据,返回一个AudioClip(只读)。数据必须是Ogg(Web/Standalones), MP3(phones), WAV, XM, IT, MOD 或 S3M格式的音频剪辑。
• function GetAudioClip (threeD : boolean, stream : boolean) : AudioClip
Parameters参数
-
threeDUse this to specify whether the clip should be a 2D or 3D clip the .audioClip property defaults to 3D.
使用这个参数指定剪辑可以是2D或3D音频剪辑。.audioClip属性默认为3D。 -
streamSets whether the clip should be completely downloaded before it's ready to play (false) or the stream can be played even if only part of the clip is downloaded (true). The latter will disable seeking on the clip (with .time and/or .timeSamples).
设置剪辑是否在准备播放之前完全下载(false) 或流可以即使只有部分剪辑下载也可以开始播放(true),后者将禁用在剪辑上寻址。(带有.time 和/或 .timeSamples)。
Description描述
Returns an AudioClip generated from the downloaded data (Read Only).
从下载数据,返回一个AudioClip(只读)。
The data must be an audio clip in Ogg(Web/Standalones), MP3(phones), WAV, XM, IT, MOD or S3M format.
数据必须是Ogg(Web/Standalones), MP3(phones), WAV, XM, IT, MOD 或 S3M格式的音频剪辑。