When using a fully ECS Follower Entity/Destination Setter, how would one get access to the path data? Also, another question, if I wanted to go about writing my own ECS movement script, how would you recommend I go about getting/calculating a path inside the ECS ecosystem?
If you need to access the data in jobs, check the implementation of FollowerEntityProxy for the properties you are interested in, which will reveal which components contain that data.
Calculating paths inside ECS is a bit tricky. You can check the SchedulePathSearchSystem and PollPendingPathsSystem for inspiration.