This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,20 @@
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);
}
}
}