diff options
| author | AndreaCatania | 2017-09-30 16:19:07 +0200 |
|---|---|---|
| committer | AndreaCatania | 2017-09-30 16:19:07 +0200 |
| commit | 4537977d6dd2a76580d9ab611a18634efab55c74 (patch) | |
| tree | 387e51e9bb1ed9b322312243c8b7d520292f3122 /main/performance.h | |
| parent | 4f39ce32b9195405f934445b20059e86632b47f9 (diff) | |
| download | godot-4537977d6dd2a76580d9ab611a18634efab55c74.tar.gz godot-4537977d6dd2a76580d9ab611a18634efab55c74.tar.zst godot-4537977d6dd2a76580d9ab611a18634efab55c74.zip | |
Diffstat (limited to 'main/performance.h')
| -rw-r--r-- | main/performance.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/main/performance.h b/main/performance.h index a9e3c07d7..900e6434b 100644 --- a/main/performance.h +++ b/main/performance.h @@ -43,14 +43,14 @@ class Performance : public Object { static void _bind_methods(); float _process_time; - float _fixed_process_time; + float _physics_process_time; public: enum Monitor { TIME_FPS, TIME_PROCESS, - TIME_FIXED_PROCESS, + TIME_PHYSICS_PROCESS, MEMORY_STATIC, MEMORY_DYNAMIC, MEMORY_STATIC_MAX, @@ -83,7 +83,7 @@ public: String get_monitor_name(Monitor p_monitor) const; void set_process_time(float p_pt); - void set_fixed_process_time(float p_pt); + void set_physics_process_time(float p_pt); static Performance *get_singleton() { return singleton; } |
