diff options
author | Dana Olson <dana@shineuponthee.com> | 2014-12-10 16:50:43 -0500 |
---|---|---|
committer | Dana Olson <dana@shineuponthee.com> | 2014-12-10 16:50:43 -0500 |
commit | e168d43b4a6964bf5b9808bc3f19bf1ab99a8535 (patch) | |
tree | d224b1017259d8a65ab83b2addb09d4e929dbd10 /core/bind | |
parent | be4e40e90a5a322f6a7cec4893854ef5b15db600 (diff) |
added GDScript binding for set_window_title
Diffstat (limited to 'core/bind')
-rw-r--r-- | core/bind/core_bind.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/bind/core_bind.cpp b/core/bind/core_bind.cpp index ef943b2f7a..0dd467986e 100644 --- a/core/bind/core_bind.cpp +++ b/core/bind/core_bind.cpp @@ -642,7 +642,7 @@ void _OS::_bind_methods() { ObjectTypeDB::bind_method(_MD("has_touchscreen_ui_hint"),&_OS::has_touchscreen_ui_hint); - + ObjectTypeDB::bind_method(_MD("set_window_title","title"),&_OS::set_window_title); ObjectTypeDB::bind_method(_MD("set_low_processor_usage_mode","enable"),&_OS::set_low_processor_usage_mode); ObjectTypeDB::bind_method(_MD("is_in_low_processor_usage_mode"),&_OS::is_in_low_processor_usage_mode); |