You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-14 13:41:12 +00:00
Improve the OS.get_environment()/OS.set_environment() documentation
This commit is contained in:
@@ -715,9 +715,9 @@ void _OS::_bind_methods() {
|
||||
ClassDB::bind_method(D_METHOD("shell_open", "uri"), &_OS::shell_open);
|
||||
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_environment", "variable"), &_OS::get_environment);
|
||||
ClassDB::bind_method(D_METHOD("set_environment", "variable", "value"), &_OS::set_environment);
|
||||
ClassDB::bind_method(D_METHOD("has_environment", "variable"), &_OS::has_environment);
|
||||
|
||||
ClassDB::bind_method(D_METHOD("get_name"), &_OS::get_name);
|
||||
ClassDB::bind_method(D_METHOD("get_cmdline_args"), &_OS::get_cmdline_args);
|
||||
|
||||
Reference in New Issue
Block a user