言語: 日本語
  • C#
  • JS
  • Boo

スクリプト言語

お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。

Profiler.enabled

public static var enabled: bool;

Description

プロファイラーの有効/無効を設定します

Can be used with Profiler.logFile to log profiling information in built players. See Also: Profiler.logFile.

	function Start () {
		Profiler.logFile = "mylog.log";
		Profiler.enabled = true;
	}