summaryrefslogtreecommitdiff
path: root/scene/main
diff options
context:
space:
mode:
authorPoommetee Ketson <poommetee@protonmail.com>2017-10-21 21:28:08 +0700
committerPoommetee Ketson <poommetee@protonmail.com>2017-10-21 21:28:08 +0700
commit9b634180aa9eefe079ecbf0ae1a1227d9555ba02 (patch)
tree08b15cd1d783f5734ddb24fb30b01e9084eb3dd3 /scene/main
parentb302084395a6d7f3cc8e4102751ced29779f2ea2 (diff)
Refactor Fixed to Physics
Diffstat (limited to 'scene/main')
-rwxr-xr-xscene/main/timer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/main/timer.cpp b/scene/main/timer.cpp
index 23854b5f59..e0c6f93f25 100755
--- a/scene/main/timer.cpp
+++ b/scene/main/timer.cpp
@@ -199,7 +199,7 @@ void Timer::_bind_methods() {
ADD_SIGNAL(MethodInfo("timeout"));
- ADD_PROPERTY(PropertyInfo(Variant::INT, "process_mode", PROPERTY_HINT_ENUM, "Fixed,Idle"), "set_timer_process_mode", "get_timer_process_mode");
+ ADD_PROPERTY(PropertyInfo(Variant::INT, "process_mode", PROPERTY_HINT_ENUM, "Physics,Idle"), "set_timer_process_mode", "get_timer_process_mode");
ADD_PROPERTY(PropertyInfo(Variant::REAL, "wait_time", PROPERTY_HINT_EXP_RANGE, "0.01,4096,0.01"), "set_wait_time", "get_wait_time");
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "one_shot"), "set_one_shot", "is_one_shot");
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "autostart"), "set_autostart", "has_autostart");