21 lines
621 B
C#
21 lines
621 B
C#
using System;
|
|
|
|
namespace UnityEngine.Networking
|
|
{
|
|
// Token: 0x02000298 RID: 664
|
|
public static class UnityWebRequestMultimedia
|
|
{
|
|
// Token: 0x06002D4B RID: 11595 RVA: 0x0004020C File Offset: 0x0003E40C
|
|
public static UnityWebRequest GetAudioClip(string uri, AudioType audioType)
|
|
{
|
|
return new UnityWebRequest(uri, "GET", new DownloadHandlerAudioClip(uri, audioType), null);
|
|
}
|
|
|
|
// Token: 0x06002D4C RID: 11596 RVA: 0x00040234 File Offset: 0x0003E434
|
|
public static UnityWebRequest GetMovieTexture(string uri)
|
|
{
|
|
return new UnityWebRequest(uri, "GET", new DownloadHandlerMovieTexture(), null);
|
|
}
|
|
}
|
|
}
|