diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2018-05-17 02:02:35 +0200 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2018-05-18 11:49:21 +0200 |
commit | 228ae60a63df4190028a34648290417982c0d268 (patch) | |
tree | 3ed8c257c7a40c8c3ca0d62e980e1d8b3b3823bb /core/script_language.h | |
parent | 942e0c483247af1e84b7992be48f8ef6317d45c6 (diff) | |
download | redot-engine-228ae60a63df4190028a34648290417982c0d268.tar.gz |
Make the performance reporting update frequency customizable
The default update frequency has been changed from 1000ms to 250ms.
Diffstat (limited to 'core/script_language.h')
-rw-r--r-- | core/script_language.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/script_language.h b/core/script_language.h index b4c55cac9e..64c6f2eb81 100644 --- a/core/script_language.h +++ b/core/script_language.h @@ -352,6 +352,8 @@ class ScriptDebugger { public: typedef void (*RequestSceneTreeMessageFunc)(void *); + int update_frequency; + struct LiveEditFuncs { void *udata; |