UnityEngine.WWW.GetAudioClipInternal C# (CSharp) Method

GetAudioClipInternal() private method

private GetAudioClipInternal ( bool threeD, bool stream, bool compressed, AudioType audioType ) : AudioClip
threeD bool
stream bool
compressed bool
audioType AudioType
return AudioClip
        private extern AudioClip GetAudioClipInternal(bool threeD, bool stream, bool compressed, AudioType audioType);
        private Encoding GetTextEncoder()

Usage Example

コード例 #1
0
 public static AudioClip GetAudioClipCompressed(this WWW www, bool threeD, AudioType audioType)
 {
     return((AudioClip)www.GetAudioClipInternal(threeD, false, true, audioType));
 }
All Usage Examples Of UnityEngine.WWW::GetAudioClipInternal