diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-07-23 15:40:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-23 15:40:01 +0200 |
commit | 8cddd3b2c04aceb040b8e862ec1bae904b6842e6 (patch) | |
tree | eb818fa47f993196335fea03c3272270a16397dd | |
parent | 78dae322471fd7e8af5ec26e8fe82e57eb567a74 (diff) | |
parent | eac8ba6ce8bf9ad2f8a0f2026718e784e3d32f54 (diff) |
Merge pull request #50768 from Calinou/editor-asset-library-urls-clarify
Clarify the purpose of the default asset library URLs in the editor
-rw-r--r-- | editor/plugins/asset_library_editor_plugin.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/editor/plugins/asset_library_editor_plugin.cpp b/editor/plugins/asset_library_editor_plugin.cpp index bbc8107cf6..556f35d4b0 100644 --- a/editor/plugins/asset_library_editor_plugin.cpp +++ b/editor/plugins/asset_library_editor_plugin.cpp @@ -603,8 +603,7 @@ void EditorAssetLibrary::_notification(int p_what) { void EditorAssetLibrary::_update_repository_options() { Dictionary default_urls; - default_urls["godotengine.org"] = "https://godotengine.org/asset-library/api"; - default_urls["localhost"] = "http://127.0.0.1/asset-library/api"; + default_urls["godotengine.org (Official)"] = "https://godotengine.org/asset-library/api"; Dictionary available_urls = _EDITOR_DEF("asset_library/available_urls", default_urls, true); repository->clear(); Array keys = available_urls.keys(); |