当前位置:   article > 正文

Unity播放视频(一) VideoPlayer的使用_unity videoplayer 代码

unity videoplayer 代码

1、在UI上添加脚本
添加UITexture脚本 用于显示视频

添加VideoPlayer
在这里插入图片描述
2、上代码

    VideoPlayer m_Video;
    UITexture m_Texture;
    void Start(){
       m_Video.started += OnStartVideo;//开始回调
       m_Video.loopPointReached += EndWithVideoPlay;//结束回调
    }    
    void PlayVideo(VideoClip vlip){
    	//可以引用外部视频 也可以通过资源加载
    	RenderTexture targetTexture = RenderTexture.GetTemporary(m_Texture.width, m_Texture.height, 16);
        m_Texture.mainTexture = targetTexture;
      	m_Video.clip = clip;
        m_Video.targetTexture = targetTexture;
        m_Video.isLooping = false;
        m_Video.Play();
    }    
     void OnStartVideo(VideoPlayer source) {
        //todo 开始播放
    }
  	void EndWithVideoPlay(VideoPlayer source) {
        //TODO播放完成后事件
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/102360
推荐阅读
相关标签
  

闽ICP备14008679号