1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

Expose OS.read_string_from_stdin() to the scripting API

This can be used in scripts to read user input in a blocking manner.

This also removes the unused `block` argument, which is always `true`.
This commit is contained in:
Hugo Locurcio
2022-12-21 00:30:55 +01:00
parent 7d6db300d2
commit badcfa2523
10 changed files with 26 additions and 21 deletions

View File

@@ -716,7 +716,7 @@ bool OS_UWP::set_environment(const String &p_var, const String &p_value) const {
return false;
}
String OS_UWP::get_stdin_string(bool p_block) {
String OS_UWP::get_stdin_string() {
return String();
}