diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-01-14 08:25:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-14 08:25:46 +0100 |
commit | 870ec61417d631d69db172e0774bc7b71530e224 (patch) | |
tree | 282b40c8e28ee6e374cd2fa629e981c65a36ec7a /core/bind/core_bind.h | |
parent | 63112b5090e06239d3551caaf0d03adc990c71e6 (diff) | |
parent | 9c60502357b51b5b9736a245364e9035a143974a (diff) | |
download | redot-engine-870ec61417d631d69db172e0774bc7b71530e224.tar.gz |
Merge pull request #35092 from AndreaCatania/frames_exp
Exposed physics frame count and idle frame count
Diffstat (limited to 'core/bind/core_bind.h')
-rw-r--r-- | core/bind/core_bind.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/bind/core_bind.h b/core/bind/core_bind.h index 7c5031cad4..65f20c375e 100644 --- a/core/bind/core_bind.h +++ b/core/bind/core_bind.h @@ -747,6 +747,8 @@ public: int get_target_fps() const; float get_frames_per_second() const; + uint64_t get_physics_frames() const; + uint64_t get_idle_frames() const; int get_frames_drawn(); |