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#

4 years ago
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
4 years ago
4 years ago
// Token: 0x06000ACD RID: 2765 RVA: 0x0002F630 File Offset: 0x0002D830
4 years ago
/*public static IEnumerator PlayMovie(string path, FullScreenMovieControlMode mode)
4 years ago
{
Handheld.PlayFullScreenMovie(path, Color.black, mode);
yield return 0;
yield break;
4 years ago
}*/
public static IEnumerator PlayMovie(string path, string mode)
{
//Handheld.PlayFullScreenMovie(path, Color.black, mode);
yield return 0;
yield break;
4 years ago
}
4 years ago
4 years ago
}