| 208 | } |
| 209 | |
| 210 | Error DisplayServerAndroid::dialog_input_text(String p_title, String p_description, String p_partial, const Callable &p_callback) { |
| 211 | GodotJavaWrapper *godot_java = OS_Android::get_singleton()->get_godot_java(); |
| 212 | ERR_FAIL_NULL_V(godot_java, FAILED); |
| 213 | input_dialog_callback = p_callback; |
| 214 | return godot_java->show_input_dialog(p_title, p_description, p_partial); |
| 215 | } |
| 216 | |
| 217 | void DisplayServerAndroid::emit_input_dialog_callback(String p_text) { |
| 218 | if (input_dialog_callback.is_valid()) { |
nothing calls this directly
no test coverage detected