diff options
| author | volzhs | 2015-11-27 23:40:04 +0900 |
|---|---|---|
| committer | volzhs | 2016-01-16 20:57:34 +0900 |
| commit | fb2bf78591672362adbb62ea15e7be4ac34a7dee (patch) | |
| tree | 98da1c62d4183bb0ca2f194f4650595cf386b3e1 /core/os/os.cpp | |
| parent | 3c6dd5749d445f082fc925a34cc0a26f8d342304 (diff) | |
| download | godot-fb2bf78591672362adbb62ea15e7be4ac34a7dee.tar.gz godot-fb2bf78591672362adbb62ea15e7be4ac34a7dee.tar.zst godot-fb2bf78591672362adbb62ea15e7be4ac34a7dee.zip | |
Diffstat (limited to 'core/os/os.cpp')
| -rw-r--r-- | core/os/os.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/core/os/os.cpp b/core/os/os.cpp index be447d511..e93038f85 100644 --- a/core/os/os.cpp +++ b/core/os/os.cpp @@ -112,6 +112,14 @@ float OS::get_target_fps() const { return _target_fps; } +void OS::set_keep_screen_on(bool p_enabled) { + _keep_screen_on=p_enabled; +} + +bool OS::is_keep_screen_on() const { + return _keep_screen_on; +} + void OS::set_low_processor_usage_mode(bool p_enabled) { low_processor_usage_mode=p_enabled; @@ -520,6 +528,7 @@ OS::OS() { frames_drawn=0; singleton=this; ips=60; + _keep_screen_on=true; // set default value to true, because this had been true before godot 2.0. low_processor_usage_mode=false; _verbose_stdout=false; _frame_delay=0; |
