UnityEngine.Networking.DownloadHandlerAudioClip.GetContent C# (CSharp) Method

GetContent() public static method

Returns the downloaded AudioClip, or null.

public static GetContent ( UnityWebRequest www ) : AudioClip
www UnityWebRequest A finished UnityWebRequest object with DownloadHandlerAudioClip attached.
return UnityEngine.AudioClip
        public static AudioClip GetContent(UnityWebRequest www)
        {
            return DownloadHandler.GetCheckedDownloader<DownloadHandlerAudioClip>(www).audioClip;
        }
    }