summaryrefslogtreecommitdiff
path: root/core/core_bind.cpp
diff options
context:
space:
mode:
authorBastiaan Olij <mux213@gmail.com>2021-02-25 22:20:13 +1100
committerBastiaan Olij <mux213@gmail.com>2021-02-25 23:36:14 +1100
commit4c8f5b998faa2fdf72e52fa434fdd4ad84bfb2ca (patch)
tree29831d8e97555f574c249a00879ac1446f6cc71e /core/core_bind.cpp
parent2adacd751c9f83f0dbbedcd2d4ce112104e09513 (diff)
Expose set_environment to GDScript
Diffstat (limited to 'core/core_bind.cpp')
-rw-r--r--core/core_bind.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/core/core_bind.cpp b/core/core_bind.cpp
index 0da6680a7b..457a110054 100644
--- a/core/core_bind.cpp
+++ b/core/core_bind.cpp
@@ -276,6 +276,10 @@ String _OS::get_environment(const String &p_var) const {
return OS::get_singleton()->get_environment(p_var);
}
+bool _OS::set_environment(const String &p_var, const String &p_value) const {
+ return OS::get_singleton()->set_environment(p_var, p_value);
+}
+
String _OS::get_name() const {
return OS::get_singleton()->get_name();
}
@@ -712,6 +716,7 @@ void _OS::_bind_methods() {
ClassDB::bind_method(D_METHOD("get_process_id"), &_OS::get_process_id);
ClassDB::bind_method(D_METHOD("get_environment", "environment"), &_OS::get_environment);
+ ClassDB::bind_method(D_METHOD("set_environment", "environment", "value"), &_OS::set_environment);
ClassDB::bind_method(D_METHOD("has_environment", "environment"), &_OS::has_environment);
ClassDB::bind_method(D_METHOD("get_name"), &_OS::get_name);