Skip to content

v1.2.0

Choose a tag to compare

@DanielWillett DanielWillett released this 03 Feb 05:03
· 5 commits to master since this release

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.