言語: 日本語
  • C#
  • JS
  • Boo

スクリプト言語

お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。

WWW.GetAudioClipCompressed

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public function GetAudioClipCompressed(threeD: bool, audioType: AudioType): AudioClip;
public AudioClip GetAudioClipCompressed(bool threeD, AudioType audioType);
public def GetAudioClipCompressed(threeD as bool, audioType as AudioType) as AudioClip

Parameters

threeD trueにすると3Dサウンド、falseにすると2D サウンドになる。 .audioClipプロパティのデフォルトは3D
audioType ダウンロードコンテンツのAudioType。これが設定されていない場合はUnityはURLでタイプを判断します

Description

ダウンロードしたデータからメモリに圧縮されているAudioClipを生成し返します (Read Only)

By default GetAudioClip will load the file into memory decompressed. This version will load the data compressed and decompress it as it plays. The data must be an audio clip in Ogg(Web/Standalones), MP3(phones) or WAV.