Rename String::is_rel_path to String::is_relative_path

This commit is contained in:
Wilson E. Alvarez 2021-08-29 19:43:47 -04:00
parent 838a449d64
commit d11c1afc04
No known key found for this signature in database
GPG key ID: A32174A3D2ED3F9E
23 changed files with 52 additions and 52 deletions

View file

@ -2609,7 +2609,7 @@ Error EditorExportPlatformAndroid::export_project_helper(const Ref<EditorExportP
String export_filename = p_path.get_file();
String export_path = p_path.get_base_dir();
if (export_path.is_rel_path()) {
if (export_path.is_relative_path()) {
export_path = OS::get_singleton()->get_resource_dir().plus_file(export_path);
}
export_path = ProjectSettings::get_singleton()->globalize_path(export_path).simplify_path();