Search
Implements standard search algorithms with a focus on extensibility and performance. Currently features A* pathfinding with low-level, use-case-agnostic design that supports custom heuristics. Planned additions include binary search and common graph algorithms like depth-first and breadth-first search.
com.smidgenomics.unity-search 
Install via UPM
Add to Unity Package Manager using this URL
https://www.pkglnk.dev/unity-search.git README Markdown
Copy this to your project's README.md
## Installation
Add **Search** to your Unity project via Package Manager:
1. Open **Window > Package Manager**
2. Click **+** > **Add package from git URL**
3. Enter:
```
https://www.pkglnk.dev/unity-search.git
```
[](https://www.pkglnk.dev/pkg/unity-search)README
đ¯ Goals
- Implement standard boilerplate for common algorithms while staying as generic as possible to allow for a multitude of use cases through extensions.
âšī¸ Features
- Fairly low level and use-case agnostic - extensible through custom heuristics.
- Reasonably performant. đ¤
- Algorithms:
A*
đĻ Install
- Open Package Manager
- Paste GitHub URL:
https://github.com/Smidgens/unity-search.git#<version_tag>
â Planned
- Common search algorithms such as binary search.
- Common graph algorithms (DF, BF,...)
No comments yet. Be the first!