- 最后登录
- 2017-5-15
- 注册时间
- 2012-3-1
- 阅读权限
- 90
- 积分
- 32973
- 纳金币
- 32806
- 精华
- 12
|
我使用MoiveTexture这个类在u3D里播放视频
但是不值得如何判断这个视频已播放完毕。
请教达人。。
代码如下:
using UnityEngine;
using System;
using System.Collections;
public class MoviePlayer : MonoBehaviour {
public MovieTexture Mt;
// Use this for initialization
void Start () {
Mt = Resources.Load("render 1") as MovieTexture;
if (Mt ==null)
{
Debug.Log("Movie NUll");
return;
}
Mt.Play();
renderer.material.mainTexture = (Texture)Mt;
}
|
|