チェンジセット 385: as3/Profiler/src/Profiler.as
- コミット日時:
- 2008/05/10 13:17:00 (4 年前)
- ファイル:
凡例:
- 変更無し
- 追加
- 削除
- 更新
- コピー
- 移動
as3/Profiler/src/Profiler.as
r358 r385 26 26 import flash.sampler.NewObjectSample; 27 27 import flash.utils.Dictionary; 28 import net.jinten.debug.utils.DebugUtils; 28 29 29 30 /** … … 39 40 /** 40 41 * Profilerインスタンスです。初めてこのプロパティを呼んだときにインスタンスが生成され、プロファイルが開始されます。 42 * ただし、プロファイルを行うためには、バージョン9,0,115,0以上のDebugプレイヤで再生されている必要があります。 43 * アプリケーションを再生しているFlashPlayerが条件を満たしていない場合はnullを返します。 41 44 */ 42 45 public static function get instance():Profiler { 43 if (_instance == null ) {46 if (_instance == null && DebugUtils.isProfilerEnabled()) { 44 47 _instance = new Profiler(new SingletonEssence); 45 48 }

