diff --git a/core/core_bind.cpp b/core/core_bind.cpp index 0da6680a7ba..457a1100549 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); diff --git a/core/core_bind.h b/core/core_bind.h index 8a4885b82bd..0cfe9bdb8b1 100644 --- a/core/core_bind.h +++ b/core/core_bind.h @@ -172,6 +172,7 @@ public: bool has_environment(const String &p_var) const; String get_environment(const String &p_var) const; + bool set_environment(const String &p_var, const String &p_value) const; String get_name() const; Vector get_cmdline_args(); diff --git a/doc/classes/OS.xml b/doc/classes/OS.xml index f6602d5f4de..6a59f24ac24 100644 --- a/doc/classes/OS.xml +++ b/doc/classes/OS.xml @@ -501,6 +501,17 @@ [b]Note:[/b] This method is implemented on Android. + + + + + + + + + Change the value of an environment variable. + +