aboutsummaryrefslogtreecommitdiff
path: root/core/bind
diff options
context:
space:
mode:
Diffstat (limited to 'core/bind')
-rw-r--r--core/bind/core_bind.cpp10
-rw-r--r--core/bind/core_bind.h2
2 files changed, 12 insertions, 0 deletions
diff --git a/core/bind/core_bind.cpp b/core/bind/core_bind.cpp
index c66416ea6..513c7a947 100644
--- a/core/bind/core_bind.cpp
+++ b/core/bind/core_bind.cpp
@@ -597,7 +597,15 @@ void _OS::native_video_stop() {
OS::get_singleton()->native_video_stop();
};
+bool _OS::is_debug_build() const {
+#ifdef DEBUG_ENABLED
+ return true;
+#else
+ return false;
+#endif
+
+}
String _OS::get_custom_level() const {
return OS::get_singleton()->get_custom_level();
@@ -668,6 +676,8 @@ void _OS::_bind_methods() {
ObjectTypeDB::bind_method(_MD("can_use_threads"),&_OS::can_use_threads);
+ ObjectTypeDB::bind_method(_MD("is_debug_build"),&_OS::is_debug_build);
+
//ObjectTypeDB::bind_method(_MD("get_mouse_button_state"),&_OS::get_mouse_button_state);
ObjectTypeDB::bind_method(_MD("dump_memory_to_file","file"),&_OS::dump_memory_to_file);
diff --git a/core/bind/core_bind.h b/core/bind/core_bind.h
index 2d824955d..b3040a96c 100644
--- a/core/bind/core_bind.h
+++ b/core/bind/core_bind.h
@@ -154,6 +154,8 @@ public:
bool has_touchscreen_ui_hint() const;
+ bool is_debug_build() const;
+
String get_unique_ID() const;
/*