16 lines
328 B
C#
16 lines
328 B
C#
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
using UnityEngine.Video;
|
|
|
|
public class PatchWindow : MonoBehaviour
|
|
{
|
|
public Text statusText;
|
|
public Slider progressBar;
|
|
public Text downloadSizeText;
|
|
public VideoPlayer video;
|
|
private void Awake()
|
|
{
|
|
video.targetCamera = GameManager.Inst.UICamera;
|
|
}
|
|
}
|