MCPcopy Create free account
hub / github.com/Redot-Engine/redot-engine / get_temp_dir

Method get_temp_dir

platform/android/java_godot_io_wrapper.cpp:112–121  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

110}
111
112String GodotIOJavaWrapper::get_temp_dir() {
113 if (_get_temp_dir) {
114 JNIEnv *env = get_jni_env();
115 ERR_FAIL_NULL_V(env, String());
116 jstring s = (jstring)env->CallObjectMethod(godot_io_instance, _get_temp_dir);
117 return jstring_to_string(s, env);
118 } else {
119 return String();
120 }
121}
122
123String GodotIOJavaWrapper::get_user_data_dir(const String &p_user_dir) {
124 if (_get_data_dir) {

Callers 12

export_projectMethod · 0.45
_add_dataMethod · 0.45
runMethod · 0.45
export_projectMethod · 0.45
runMethod · 0.45
get_temp_pathMethod · 0.45
runMethod · 0.45
export_project_helperMethod · 0.45
export_projectMethod · 0.45
runMethod · 0.45
_export_projectMethod · 0.45
_send_responseMethod · 0.45

Calls 3

get_jni_envFunction · 0.85
jstring_to_stringFunction · 0.85
StringClass · 0.50

Tested by

no test coverage detected