Quellcode durchsuchen

Merge pull request #628 from Ragora/bugfix-asset-browser-selection

BugFix: Correct a case where creator categories may get populated Incorrectly
Brian Roberts vor 3 Jahren
Ursprung
Commit
479f943cfd

+ 2 - 1
Templates/BaseGame/game/tools/assetBrowser/scripts/assetBrowser.tscript

@@ -628,7 +628,8 @@ function AssetBrowser::loadDirectories( %this )
    
    %this.loadTags();
    
-   %this.loadCreatorClasses();
+   if (!%this.selectMode)
+      %this.loadCreatorClasses();
    
    //If set to, show core
    if(EditorSettings.value("Assets/Browser/showCoreModule", false) == 1)