v1.2.0
Added find command:
find [type] [search]
Type can be anything such as: LevelAsset, Barricade, Item, Supply, LandscapeMaterialAsset, etc.
Search is applied to the assets English name, or the asset name if it doesn't have an english name.
It uses Levenshtein distance to sort the results.
query <query>
Uses the Z.Expressions.Eval package as a dynamic Where query on a list of asset files https://eval-expression.net/.
Use queries such as:
query x => x.Dictionary.ContainsKey("Pro")
query x => x.Id > 35000 && x.Id < 40000
I want to improve queries in the future ideally to make them more useful.