You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
634 B
C#

using System;
using System.Collections;
using UnityEngine;
// Token: 0x0200017E RID: 382
public class MovieManager
{
//TODO fix movie playing. either make platform specific versions OR make platform agnostic
// Token: 0x06000ACD RID: 2765 RVA: 0x0002F630 File Offset: 0x0002D830
/*public static IEnumerator PlayMovie(string path, FullScreenMovieControlMode mode)
{
Handheld.PlayFullScreenMovie(path, Color.black, mode);
yield return 0;
yield break;
}*/
public static IEnumerator PlayMovie(string path, string mode)
{
//Handheld.PlayFullScreenMovie(path, Color.black, mode);
yield return 0;
yield break;
}
}