using System; namespace TriLib { [Flags] public enum AiUVTransform { Rotation = 2, Scaling = 1, Translation = 4 } }