Methods
GetLinkArraySets
Returns a reference to the LinkArraySets variable. This variable contains all the settings that define how navigation links are created, including their quantity and placement along the spline.

UFUNCTION(BlueprintCallable, Category = "AI|Navigation Link Array")
TArray <FNLASet>& GetLinkArraySets ();ResumePathFollowing
This (optional) method is used when the PathFollowingComponent enters a NLAPhysicalLink. It ensures that the path-following process resumes correctly after an agent exits the link. While the exit events will trigger even if this method is not called, they may be unreliable in certain scenarios. Calling ResumePathFollowing guarantees that exit events are properly traced and handled.

UFUNCTION(BlueprintCallable, Category = "AI|Navigation Link Array")
void ResumePathFollowing (UPathFollowingComponent* PathFollowingComponent);Last updated