GetAudioClipInternal() 개인적인 메소드

private GetAudioClipInternal ( bool threeD, bool stream, bool compressed, AudioType audioType ) : AudioClip
threeD bool
stream bool
compressed bool
audioType AudioType
리턴 AudioClip
예제 #1
0
 public static AudioClip GetAudioClipCompressed(this WWW www, bool threeD, AudioType audioType)
 {
     return((AudioClip)www.GetAudioClipInternal(threeD, false, true, audioType));
 }
예제 #2
0
 public static AudioClip GetAudioClip(this WWW www, bool threeD, bool stream, AudioType audioType)
 {
     return((AudioClip)www.GetAudioClipInternal(threeD, stream, false, audioType));
 }