Tries each of MoveToConfig.alternativeTargets. If there does not exist a path to any of these targets, MoveToConfig.noPathFoundAlternativeTargetsFallbackStrategy determines the fallback strategy.
Look for the closest point (manhattan distance) to the target position that is reachable.
Tries again after MoveToConfig.noPathFoundRetryBackoffMs
milliseconds until the maximum amount of retries (MoveToConfig.noPathFoundMaxRetries) has been reached. By default, MoveToConfig.noPathFoundMaxRetries is -1
, which means that there is no
maximum number of retries and it will try again possibly "forever".
Simply stops pathfinding if no path could be found.
Different strategies that determine the behavior of pathfinding if no path could be found.