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.
16 lines
374 B
C#
16 lines
374 B
C#
using System;
|
|
using System.Collections;
|
|
using UnityEngine;
|
|
|
|
// Token: 0x0200017E RID: 382
|
|
public class MovieManager
|
|
{
|
|
// 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;
|
|
}
|
|
}
|