当前位置:   article > 正文

【Unity】Unity中开场动画设置_unity怎么做前面的开头动画

unity怎么做前面的开头动画
  1. using System.Collections;
  2. public class Test: MonoBehaviour
  3. {
  4. // 电影纹理
  5. public MovieTexture movTexture;
  6. void Start ()
  7. {
  8. // 设置电影纹理播放模式为循环
  9. movTexture.loop = false;
  10. movTexture.Play ();
  11. }
  12. void Update ()
  13. {
  14. if (Input.GetMouseButtonDown (0)) {
  15. Debug.Log ("当点击屏幕的时候可以触发跳转场景等一些事件");
  16. }
  17. }
  18. void OnGUI ()
  19. {
  20. GUI.DrawTexture (new Rect (0, 0, Screen.width, Screen.height), movTexture);
  21. if (GUILayout.Button ("播放/继续")) {
  22. // 播放/继续播放视频
  23. movTexture.Play ();
  24. }
  25. if (GUILayout.Button ("暂停播放")) {
  26. // 暂停播放
  27. movTexture.Pause ();
  28. }
  29. if (GUILayout.Button ("停止播放")) {
  30. // 停止播放
  31. movTexture.Stop ();
  32. }
  33. }
  34. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/91960
推荐阅读
相关标签
  

闽ICP备14008679号