NLAPhysicalLinkAlignment

This enumeration defines how navigation links are aligned along the spline when using the Navigation Link Array system. Each option influences where the generated links will be positioned on the spline in relation to its total length.

For detailed behavior of each alignment option, refer to the Alignment section.

/*
 * Enumerates link alignment options
 */
UENUM(BlueprintType)
enum ENLAPhysicalLinkAlignment : int
{
	/** Fill the entire spline length. */
	NLA_Fill UMETA(DisplayName="Fill"),

	/** Left-align. */
	NLA_Left UMETA(DisplayName="Left"),

	/** Center-align. */
	NLA_Center UMETA(DisplayName="Center"),

	/** Right-align. */
	NLA_Right UMETA(DisplayName="Right"),	
};

Last updated