A typed port of grayzcale's simple path!
npm install @rbxts/simple-path
!GitHub Workflow Status
!GitHub release (latest SemVer)
!GitHub
A typed version of SimplePath, an open-source pathfinding module that gives you the ability to quickly create a pathfinding script for humanoids and non-humanoids with just a few lines of code. Pathfinding is done using Roblox's PathfindingService.
(This can be replaced with any package manager!)
``sh`
$ npm i @rbxts/simplepath
`ts
import SimplePath from "@rbxts/simplepath"
import {Workspace} from "@rbxts/services"
const Path = new SimplePath(Workspace.WaitForChild("Dummy"))
Path.Run(Workspace.WaitForChild("Goal"))
``