using System;
using System.Collections;
using System.Collections.Generic;
using UIFORM;
using UnityEngine;
using UnityEngine.UI;
using UnityEngine.Video;
public class VideoPlayPanel : MonoBehaviour
{
public string playName = "极乐净土";
public string format = ".mp4";
//正在播的视频
public VideoClip vc_Video;
private Button Btu_Close;
//需要添加播放器的物体
private Transform go_Screen;
//图像
private RawImage ri_Screen;
//播放器
private VideoPlayer vPlayer;
//音频组件
private AudioSource source;
private Transform downParent;
//视频控制器
private Slider sliderVideo;
//视频名称
private Text text_VideoName;
//播放
private Button btn_Play;
//声音
private Button btn_Sound;
//全屏
private Button btn_Scene;
//音量控制器
private Slider sliderSource;
//音量大小
private Text text_Sound;
//当前视频时间
private Text text_currTime;
//视频总时长
private Text text_totalCount;