Files
Main/Assets/Launcher/UpdateFormDll/Movie/WebMoviePlayer.cs

20 lines
362 B
C#
Raw Normal View History

2025-01-25 04:38:09 +08:00
using UnityEngine;
namespace Thousandto.UpdateForm.Movie
{
#if UNITY_WEBGL
public class WebMoviePlayer : IMoviePlayer
{
public void Play(string fileName, MovieAction finishedCallBack)
{
if (finishedCallBack != null) finishedCallBack();
}
public void Stop()
{
}
}
#endif
}