diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2021-05-21 01:23:35 -0400 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2021-07-26 02:00:48 -0400 |
commit | 4ecb6fba8002533f266d03e13ccba7cee4216421 (patch) | |
tree | 6ce7421c462e72b3691d01bff6256cb4cab0a631 /scene/main/timer.cpp | |
parent | 0c68ccecda468b6c03f57b090aab69decc7b9549 (diff) | |
download | redot-engine-4ecb6fba8002533f266d03e13ccba7cee4216421.tar.gz |
Use doubles for time everywhere in Timer/SceneTree
Diffstat (limited to 'scene/main/timer.cpp')
-rw-r--r-- | scene/main/timer.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scene/main/timer.cpp b/scene/main/timer.cpp index ef8245076f..b5a2a30b3b 100644 --- a/scene/main/timer.cpp +++ b/scene/main/timer.cpp @@ -81,12 +81,12 @@ void Timer::_notification(int p_what) { } } -void Timer::set_wait_time(float p_time) { +void Timer::set_wait_time(double p_time) { ERR_FAIL_COND_MSG(p_time <= 0, "Time should be greater than zero."); wait_time = p_time; } -float Timer::get_wait_time() const { +double Timer::get_wait_time() const { return wait_time; } @@ -106,7 +106,7 @@ bool Timer::has_autostart() const { return autostart; } -void Timer::start(float p_time) { +void Timer::start(double p_time) { ERR_FAIL_COND_MSG(!is_inside_tree(), "Timer was not added to the SceneTree. Either add it or set autostart to true."); if (p_time > 0) { @@ -139,7 +139,7 @@ bool Timer::is_stopped() const { return get_time_left() <= 0; } -float Timer::get_time_left() const { +double Timer::get_time_left() const { return time_left > 0 ? time_left : 0; } |