Add recording indicator
This commit is contained in:
parent
5b6116e943
commit
3fb7610519
File diff suppressed because it is too large
Load Diff
|
@ -4,6 +4,7 @@ using System.Collections.Generic;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
using UnityEngine.UI;
|
||||||
using UnityEngine.Windows.WebCam;
|
using UnityEngine.Windows.WebCam;
|
||||||
#if WINDOWS_UWP && !UNITY_EDITOR
|
#if WINDOWS_UWP && !UNITY_EDITOR
|
||||||
using Windows.Storage;
|
using Windows.Storage;
|
||||||
|
@ -11,8 +12,33 @@ using Windows.Storage;
|
||||||
|
|
||||||
public class VideoCaptureHandler : MonoBehaviour
|
public class VideoCaptureHandler : MonoBehaviour
|
||||||
{
|
{
|
||||||
|
[SerializeField]
|
||||||
|
private GameObject recordingStatus = null;
|
||||||
|
|
||||||
|
private Coroutine blinkCoroutine = null;
|
||||||
|
private Image recordingImage = null;
|
||||||
private VideoCapture videoCapture = null;
|
private VideoCapture videoCapture = null;
|
||||||
|
|
||||||
|
private IEnumerator BlinkLightRed()
|
||||||
|
{
|
||||||
|
if (recordingImage == null)
|
||||||
|
{
|
||||||
|
recordingImage = recordingStatus.GetComponentInChildren<Image>();
|
||||||
|
}
|
||||||
|
|
||||||
|
Color lightRed = new Color(1, 0.3f, 0.3f, 0.6f);
|
||||||
|
Color transparent = new Color(1, 0.3f, 0.3f, 0);
|
||||||
|
|
||||||
|
while (true)
|
||||||
|
{
|
||||||
|
recordingImage.color = lightRed;
|
||||||
|
yield return new WaitForSeconds(0.5f);
|
||||||
|
|
||||||
|
recordingImage.color = transparent;
|
||||||
|
yield return new WaitForSeconds(0.5f);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#if WINDOWS_UWP && !UNITY_EDITOR
|
#if WINDOWS_UWP && !UNITY_EDITOR
|
||||||
private const string freeSpace = "System.FreeSpace";
|
private const string freeSpace = "System.FreeSpace";
|
||||||
private const UInt64 minAvailableSpace = 5UL * 1024 * 1024 * 1024; // 5GB
|
private const UInt64 minAvailableSpace = 5UL * 1024 * 1024 * 1024; // 5GB
|
||||||
|
@ -129,11 +155,18 @@ public class VideoCaptureHandler : MonoBehaviour
|
||||||
#if WINDOWS_UWP && !UNITY_EDITOR
|
#if WINDOWS_UWP && !UNITY_EDITOR
|
||||||
StartCoroutine(CheckAvailableStorageSpace());
|
StartCoroutine(CheckAvailableStorageSpace());
|
||||||
#endif
|
#endif
|
||||||
|
recordingStatus.SetActive(true);
|
||||||
|
blinkCoroutine = StartCoroutine(BlinkLightRed());
|
||||||
}
|
}
|
||||||
|
|
||||||
public void StopRecordingVideo()
|
public void StopRecordingVideo()
|
||||||
{
|
{
|
||||||
Debug.Log("Stopping Video Recording");
|
Debug.Log("Stopping Video Recording");
|
||||||
|
if (blinkCoroutine != null)
|
||||||
|
{
|
||||||
|
StopCoroutine(blinkCoroutine);
|
||||||
|
}
|
||||||
|
recordingStatus.SetActive(false);
|
||||||
videoCapture.StopRecordingAsync(OnStoppedRecordingVideo);
|
videoCapture.StopRecordingAsync(OnStoppedRecordingVideo);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue