12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- using System.Collections;
- using System.Collections.Generic;
- using System.IO;
- using UnityEngine;
- public class TemplateVideo : BaseTemPlate
- {
- private Navigator.VideoControl m_VideoCtr;
- protected override void OnEnable()
- {
-
- base.OnEnable();
- if (GameManager.Instance.IsRuning && string.IsNullOrWhiteSpace(m_VideoCtr.VideoURL))
- {
- if (File.Exists(Data.localSavePath))
- {
- m_VideoCtr.VideoURL = Data.localSavePath;
-
- }
- else
- {
- m_VideoCtr.VideoURL = null;
- }
- }
- m_VideoCtr.m_IsPlaying = false;
- m_VideoCtr.PlayVideo();
- }
- protected override void OnAwake()
- {
- base.OnAwake();
- m_VideoCtr = transform.Find("Screen/Video").GetComponent<Navigator.VideoControl>();
- HideCollider();
- }
- public override void SetData(MaterialObjValue value, int updateTime)
- {
- base.SetData(value, updateTime);
- if (!GameManager.Instance.IsRuning)
- {
- DownloadManager.Instance.AddDownloadData(Data);
- }
- else
- {
- if (File.Exists(Data.localSavePath))
- {
- m_VideoCtr.VideoURL = Data.localSavePath;
- }
- else
- {
- m_VideoCtr.VideoURL = null;
- }
- }
- }
- public void SetData(string url)
- {
- m_VideoCtr.VideoURL = url;
- }
- public override void HideCollider()
- {
- base.HideCollider();
- }
- }
|