UnityEngine.WWW.GetAudioClipInternal C# (CSharp) Méthode

GetAudioClipInternal() private méthode

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

Usage Example

 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