Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hieki-chan/unity-search-fuzzy
Simple fuzzy search for unity
https://github.com/hieki-chan/unity-search-fuzzy
fuzzy-matching fuzzy-search search unity
Last synced: about 1 month ago
JSON representation
Simple fuzzy search for unity
- Host: GitHub
- URL: https://github.com/hieki-chan/unity-search-fuzzy
- Owner: hieki-chan
- Created: 2024-01-18T15:30:14.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-08-24T16:31:42.000Z (4 months ago)
- Last Synced: 2024-08-24T18:03:15.120Z (4 months ago)
- Topics: fuzzy-matching, fuzzy-search, search, unity
- Language: C#
- Homepage:
- Size: 3.28 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Fuzzy-Search
Simple fuzzy search for unity## How to use Fuzzy Search step by step
### Import Package
```
Window > Package Manager > (+) Plus Button > Add Package form git Url
```git URL:
```
https://github.com/hieki-chan/unity-search-fuzzy.git
```### Example
```C#
using Hieki.Search;```
```C#
// Example
double ratio = Fuzzy.Ratio("something went wrong", "smthing go wrog");
Debug.Log(ratio); // unity
-> 0.4516
``````
you can try this out for more!
```