diff options
| author | Rémi Verschelde | 2017-10-21 16:48:05 +0200 |
|---|---|---|
| committer | GitHub | 2017-10-21 16:48:05 +0200 |
| commit | 632459a46bcb321560152932bd401f750f98be1a (patch) | |
| tree | 693fdc57c9302f2fb1d2b75dfc55006b07b0ce1a /editor/script_editor_debugger.cpp | |
| parent | 2e212a2cfd8bba3fd484cda03cfcad44edd78fb8 (diff) | |
| parent | 9b634180aa9eefe079ecbf0ae1a1227d9555ba02 (diff) | |
| download | godot-632459a46bcb321560152932bd401f750f98be1a.tar.gz godot-632459a46bcb321560152932bd401f750f98be1a.tar.zst godot-632459a46bcb321560152932bd401f750f98be1a.zip | |
Merge pull request #12281 from Noshyaar/fixed2physics
Refactor Fixed to Physics
Diffstat (limited to 'editor/script_editor_debugger.cpp')
| -rw-r--r-- | editor/script_editor_debugger.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/script_editor_debugger.cpp b/editor/script_editor_debugger.cpp index 5ad4674f7..ef61aad34 100644 --- a/editor/script_editor_debugger.cpp +++ b/editor/script_editor_debugger.cpp @@ -663,7 +663,7 @@ void ScriptEditorDebugger::_parse_message(const String &p_msg, const Array &p_da EditorProfiler::Metric::Category::Item item; item.calls = 1; item.line = 0; - item.name = "Fixed Time"; + item.name = "Physics Time"; item.total = metric.physics_time; item.self = item.total; item.signature = "physics_time"; @@ -677,7 +677,7 @@ void ScriptEditorDebugger::_parse_message(const String &p_msg, const Array &p_da frame_time.items.push_back(item); - item.name = "Fixed Frame Time"; + item.name = "Physics Frame Time"; item.total = metric.physics_frame_time; item.self = item.total; item.signature = "physics_frame_time"; |
