瀏覽代碼

Merge pull request #43697 from Calinou/increase-profiler-frame-max-functions

Increase the default `profiler_frame_max_functions` to 512
Rémi Verschelde 4 年之前
父節點
當前提交
e4f2f899db
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      editor/editor_profiler.cpp

+ 1 - 1
editor/editor_profiler.cpp

@@ -764,7 +764,7 @@ EditorProfiler::EditorProfiler() {
 	last_metric = -1;
 	hover_metric = -1;
 
-	EDITOR_DEF("debugger/profiler_frame_max_functions", 64);
+	EDITOR_DEF("debugger/profiler_frame_max_functions", 512);
 
 	frame_delay = memnew(Timer);
 	frame_delay->set_wait_time(0.1);