Rename String.is_abs_path() to String.is_absolute_path()

This is more consistent with `NodePath.is_absolute()`.
This commit is contained in:
Hugo Locurcio
2021-06-03 15:41:22 +02:00
parent 7ab34e1a96
commit 5ea1c75d63
17 changed files with 27 additions and 27 deletions

View File

@ -208,7 +208,7 @@ String DirAccessWindows::get_current_dir(bool p_include_drive) {
bool DirAccessWindows::file_exists(String p_file) {
GLOBAL_LOCK_FUNCTION
if (!p_file.is_abs_path()) {
if (!p_file.is_absolute_path()) {
p_file = get_current_dir().plus_file(p_file);
}