1. 程式人生 > >unity3d 在Sphere上播放視訊

unity3d 在Sphere上播放視訊

播放音訊使用VideoPlayer元件。

首先搭建如下場景,場景中建立一個Sphere.

在Sphere上面新增VideoPlayer元件,並且給VideoClip賦值一個視訊(MP4格式)。

給Sphere新增如下指令碼:

  1.     public Button but1;
  2.     public Button but2;
  3.     public Button but3;
  4.    public VideoPlayer video;
  5.     void Start () {
  6.         but1 = GameObject.Find("Button1").GetComponent<Button>();
  7.         but1.onClick.AddListener(OnBut1);
  8.         but2 = GameObject.Find("Button2").GetComponent<Button>();
  9.         but2.onClick.AddListener(OnBut2);
  10.         but3 = GameObject.Find("Button3").GetComponent<Button>();
  11.         but3.onClick.AddListener(OnBut3);
  12.          video = gameObject.GetComponent<VideoPlayer>();
  13.     }
  14.     void OnBut1() {
  15.         if (!video.isPlaying)
  16.         {
  17.             video.Play();
  18.         }
  19.     }
  20.     void OnBut2() {
  21.         if (video.isPlaying)
  22.         {
  23.             video.Pause();
  24.         }
  25.     }
  26.     void OnBut3() {
  27.         if (video.isPlaying)
  28.         {
  29.             video.Stop();
  30.         }
  31.     }

 執行,小球上面就會播放視訊,button可以控制視訊的播放,暫停,關閉。