Is there a way to calculate if a Humanoid needs to jump?
I’m not sure but I remember that PathfindingService has a thing that tells when an NPC has to Jump but I can’t find any documents on it.
The Wiki pages are
Is there a way to calculate if a Humanoid needs to jump?
I’m not sure but I remember that PathfindingService has a thing that tells when an NPC has to Jump but I can’t find any documents on it.
The Wiki pages are
The API you’re looking for is PathWaypoint.Action. This API is a PathWaypointAction enum that determines whether or not the point is for walking to or jumping to.
PathWaypoints are returned via Path:GetWaypoints(). Doesn’t look like you looked at the PathWaypoint page in your search.
I’ve also experimented and found out that when you unpack and print Path:GetWaypoints(), you can get Vector3 expected of the Path, as well as if the next point is reachable via a Walk or a Jump. I’m not sure if this is useful, but I hope it is.
Thank you both, @AbiZinho, @Thundermaker300
https://gyazo.com/b2c2b753cb13682dd9350bca8a73d469
Got it to work nicely