From 5e04f0760aad19bed8ad10772c908a1438b28315 Mon Sep 17 00:00:00 2001 From: Daniel Kinsman Date: Tue, 6 Aug 2024 11:47:25 +1000 Subject: Add target fps editor setting to visual profiler Use same max fps as project setting Co-authored-by: Hugo Locurcio --- editor/debugger/editor_visual_profiler.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'editor/debugger/editor_visual_profiler.cpp') diff --git a/editor/debugger/editor_visual_profiler.cpp b/editor/debugger/editor_visual_profiler.cpp index 17977fcb29..56c9db44cd 100644 --- a/editor/debugger/editor_visual_profiler.cpp +++ b/editor/debugger/editor_visual_profiler.cpp @@ -103,6 +103,8 @@ void EditorVisualProfiler::clear() { variables->clear(); //activate->set_pressed(false); + graph_limit = 1000.0f / CLAMP(int(EDITOR_GET("debugger/profiler_target_fps")), 1, 1000); + updating_frame = true; cursor_metric_edit->set_min(0); cursor_metric_edit->set_max(0); @@ -812,6 +814,8 @@ EditorVisualProfiler::EditorVisualProfiler() { int metric_size = CLAMP(int(EDITOR_GET("debugger/profiler_frame_history_size")), 60, 10000); frame_metrics.resize(metric_size); + graph_limit = 1000.0f / CLAMP(int(EDITOR_GET("debugger/profiler_target_fps")), 1, 1000); + frame_delay = memnew(Timer); frame_delay->set_wait_time(0.1); frame_delay->set_one_shot(true); -- cgit v1.2.3