You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-07 12:30:27 +00:00
Rename String.is_abs_path() to String.is_absolute_path()
This is more consistent with `NodePath.is_absolute()`.
This commit is contained in:
@@ -770,7 +770,7 @@ void EditorNode::_resources_changed(const Vector<String> &p_resources) {
|
||||
if (!res->editor_can_reload_from_file()) {
|
||||
continue;
|
||||
}
|
||||
if (!res->get_path().is_resource_file() && !res->get_path().is_abs_path()) {
|
||||
if (!res->get_path().is_resource_file() && !res->get_path().is_absolute_path()) {
|
||||
continue;
|
||||
}
|
||||
if (!FileAccess::exists(res->get_path())) {
|
||||
|
||||
Reference in New Issue
Block a user