summaryrefslogtreecommitdiffstats
path: root/scene/main/timer.cpp
diff options
context:
space:
mode:
authorshaderbeast <jd16581556@gmail.com>2019-09-01 01:25:22 +0200
committershaderbeast <jd16581556@gmail.com>2019-09-03 13:26:41 +0200
commit5e337b31ebcf4509e1cf4cb64b02908ade59df05 (patch)
treec221b3525d130ecc7823900a0f14321116752541 /scene/main/timer.cpp
parent00aabec8bb598592b8a8702797b51fc9f6ca6169 (diff)
downloadredot-engine-5e337b31ebcf4509e1cf4cb64b02908ade59df05.tar.gz
Added is_inside_tree() check in both Timer and Tween
Tween now throws error and doesnt even execute.
Diffstat (limited to 'scene/main/timer.cpp')
-rwxr-xr-xscene/main/timer.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/scene/main/timer.cpp b/scene/main/timer.cpp
index 03d46fd28d..14cc705edb 100755
--- a/scene/main/timer.cpp
+++ b/scene/main/timer.cpp
@@ -107,6 +107,9 @@ bool Timer::has_autostart() const {
}
void Timer::start(float p_time) {
+
+ ERR_FAIL_COND_MSG(!is_inside_tree(), "Timer was not added to the SceneTree!");
+
if (p_time > 0) {
set_wait_time(p_time);
}