1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-06 19:41:11 +00:00

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

Increase the default `profiler_frame_max_functions` to 512
This commit is contained in:
Rémi Verschelde
2020-11-23 10:02:37 +01:00
committed by GitHub

View File

@@ -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);