Version: 2021.3

WebCamTexture.didUpdateThisFrame

切换到手册
public bool didUpdateThisFrame ;

描述

视频缓冲区是否更新了此帧?

使用此属性可检查视频缓冲区自上帧以来是否发生了更改。设置低帧率时, 视频更新速度可能比游戏更慢。因为在每次 Update 调用中执行高开销的视频 处理没有意义,请在进行任意处理前检查此值。

using UnityEngine;

public class ExampleScript : MonoBehaviour { WebCamTexture webcamTexture; Color32[] data;

void Start() { // Start web cam feed webcamTexture = new WebCamTexture(); webcamTexture.Play(); data = new Color32[webcamTexture.width * webcamTexture.height]; }

void Update() { if (webcamTexture.didUpdateThisFrame) { webcamTexture.GetPixels32(data); // Do processing of data here. } } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961