Profiler.BeginSample 开始采样

static function BeginSample (name : string) : void

Description描述

Begin profiling a piece of code with a custom label.

开始分析一段代码,带有一个自定义标签。

This will show up in the Profiler hierarchy.

这将显示在Profiler的层级面板。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	void Awake() {
		Profiler.BeginSample("MyPieceOfCode");
		Profiler.EndSample();
	}
}
Profiler.BeginSample ("MyPieceOfCode");
// do something that takes a lot of time
Profiler.EndSample ();

参见:Profiler.EndSample

最后修改:2011年3月25日 Friday 13:43

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。