Преглед изворни кода

Merge pull request #31722 from Calinou/assetlib-improve-image-loading-speed

Improve image loading performance in the asset library
Rémi Verschelde пре 6 година
родитељ
комит
d8de8d5e34
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      editor/plugins/asset_library_editor_plugin.cpp

+ 1 - 1
editor/plugins/asset_library_editor_plugin.cpp

@@ -827,7 +827,7 @@ void EditorAssetLibrary::_image_request_completed(int p_status, int p_code, cons
 
 void EditorAssetLibrary::_update_image_queue() {
 
-	int max_images = 2;
+	const int max_images = 6;
 	int current_images = 0;
 
 	List<int> to_delete;