You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-21 14:57:09 +00:00
Rename String plus_file to path_join
This commit is contained in:
@@ -178,8 +178,8 @@ Vector<String> EditorPluginSettings::_get_plugins(const String &p_dir) {
|
||||
continue;
|
||||
}
|
||||
|
||||
const String full_path = p_dir.plus_file(path);
|
||||
const String plugin_config = full_path.plus_file("plugin.cfg");
|
||||
const String full_path = p_dir.path_join(path);
|
||||
const String plugin_config = full_path.path_join("plugin.cfg");
|
||||
if (FileAccess::exists(plugin_config)) {
|
||||
plugins.push_back(plugin_config);
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user