Remove recording indicator
This commit is contained in:
parent
3fb7610519
commit
af9df65f36
File diff suppressed because it is too large
Load Diff
|
@ -4,7 +4,6 @@ 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;
|
||||||
|
@ -12,33 +11,8 @@ 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
|
||||||
|
@ -155,18 +129,11 @@ 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