summaryrefslogtreecommitdiffstats
path: root/core/bind/core_bind.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'core/bind/core_bind.cpp')
-rw-r--r--core/bind/core_bind.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/core/bind/core_bind.cpp b/core/bind/core_bind.cpp
index c66416ea6d..513c7a9470 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);