mirror of
https://github.com/AssetRipper/AssetRipper.git
synced 2025-12-11 20:15:29 +01:00
16 lines
409 B
C#
16 lines
409 B
C#
namespace AssetRipper.Core.Classes.Flare
|
|
{
|
|
/// <summary>
|
|
/// Enum describing how the individual Flare Element images are laid out inside the Flare Texture.<br/>
|
|
/// <see href="https://docs.unity3d.com/Manual/class-Flare.html"/>
|
|
/// </summary>
|
|
public enum TextureLayout
|
|
{
|
|
OneLargeFourSmall = 0,
|
|
OneLargeTwoMediumEightSmall = 1,
|
|
OneTexture = 2,
|
|
TwoGrid = 3,
|
|
ThreeGrid = 4,
|
|
FourGrid = 5
|
|
}
|
|
} |