浏览代码

-fix timer behavior described, closes #1455

Juan Linietsky 10 年之前
父节点
当前提交
bf53b7789a
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      scene/main/timer.cpp

+ 2 - 0
scene/main/timer.cpp

@@ -46,6 +46,8 @@ void Timer::_notification(int p_what) {
 		} break;
 		case NOTIFICATION_PROCESS: {
 
+			if (!is_processing())
+				return;
 			time_left -= get_process_delta_time();
 
 			if (time_left<0) {