版本:Unity 6 (6000.0)
语言英语
  • C#

PIX.IsAttached

建议修改

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们不能接受所有提交内容,但我们会仔细阅读用户建议的每项内容变更,并在适用的情况下进行更新。

关闭

提交失败

由于某些原因,您建议的修改无法提交。请在几分钟后重试。感谢您抽出时间帮助我们提高 Unity 文档的质量。

关闭

取消

声明

public static bool IsAttached();

描述

如果正在通过 PIX 运行并处于开发构建中,则返回 true。

using UnityEngine;
using UnityEngine.Rendering;

public class PixControl : MonoBehaviour { public int frameCaptureCount = 1;

int frameCount = 0; bool capturing = false;

void Awake() { if (PIX.IsAttached()) { PIX.BeginGPUCapture(); capturing = true; } }

void Update() { if (frameCount > frameCaptureCount && capturing) { PIX.EndGPUCapture(); capturing = false; }

frameCount++; } }