[DiscordArchive] Assuming I have an x, y, z position to move to what's the recommended way to validate that a path wi
[DiscordArchive] Assuming I have an x, y, z position to move to what's the recommended way to validate that a path wi
Archived author: Deleted User • Posted: 2023-03-13T11:37:36.583000+00:00
Original source
Assuming I have an x, y, z position to move to what's the recommended way to validate that a path will be generated so that if not I can choose a new position?
Archived author: Deleted User • Posted: 2023-03-13T11:38:44.432000+00:00
Original source
Basically
```
if (! WillReachPosition(x, y, z))
// do stuff
else
// do other stuff
```
Archived author: Naxgal • Posted: 2023-03-13T11:59:53.490000+00:00
Original source
I'm noob programming xD