返回介绍

WebCamTexture.didUpdateThisFrame 是否更新该帧

发布于 2019-12-18 15:38:45 字数 1988 浏览 950 评论 0 收藏 0

JavaScript => public var didUpdateThisFrame: bool;
C# => public bool didUpdateThisFrame;

Description 描述

Did the video buffer update this frame?

视频缓存区是否更新此帧?

Use this to check if the video buffer has changed since the last frame. When setting a low frame rate, it is likely that the video updates slower then the game, so it does not make sense to do expensive video processing in each Update call, so check this value before doing any processing.

使用该属性检查最后帧后视频缓存区是否改变。当设置低帧率时,可能视频的更新慢于游戏,因此,在每次调用更新时它不可能做太多的场景处理,所以做任何处理之前检查该值。

JavaScript:

var webcamTexture : WebCamTexture;
	var data : Color32[];
 
	function Start () {
		// Start web cam feed
		webcamTexture = WebCamTexture();
		webcamTexture.Play();
		data = new Color32[webcamTexture.width * webcamTexture.height];
	}
 
	function Update () {
		if (webcamTexture.didUpdateThisFrame)
		{
			webcamTexture.GetPixels32 (data);
			// Do processing of data here.
		}
	}

C#:

using UnityEngine;
using System.Collections;
 
public class ExampleClass : MonoBehaviour {
    public WebCamTexture webcamTexture;
    public Color32[] data;
    void Start() {
        webcamTexture = new WebCamTexture();
        webcamTexture.Play();
        data = new Color32[webcamTexture.width * webcamTexture.height];
    }
    void Update() {
        if (webcamTexture.didUpdateThisFrame)
            webcamTexture.GetPixels32(data);
 
    }
}

webcamtexture

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文