Editor/SeamlessExportFormat.cs
public enum SeamlessExportFormat
{
	Png,
	Jpg,
	WebP,
	Bmp
}

public enum SeamlessPreviewMode
{
	Original,
	Processed,
	Tiled
}

public enum SeamlessProcessingMode
{
	OffsetBlend,
	IrregularPatch,
	TextureBombing,
	BrickAndTile
}

public enum SeamlessSeamShape
{
	Smooth,
	Linear,
	Wavy,
	Noise,
	Irregular
}

public enum SeamlessVariationPreset
{
	Gentle,
	Balanced,
	Strong
}

public enum SeamlessPatchShape
{
	Circle,
	Square,
	Diamond,
	Hexagon
}

public enum SeamlessBrickTilePattern
{
	SquareTile,
	RunningBrick,
	StackedBrick,
	Planks,
	Panels
}