Prechádzať zdrojové kódy

* [AssetBrowser] BugFix: Correct a logic error in the filtering of the asset browser causing tags queries to display all assets.

Robert MacGregor 4 rokov pred
rodič
commit
1676d102f3

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

@@ -1802,7 +1802,7 @@ function matchesSearch(%assetName, %assetType)
          }
          else
          {
-            if(%assetName.tags !$= %word)
+            if(strstr(strlwr(%assetName.tags), strlwr(%word)) != -1)
                %matchTags = true;
          }
       }