Back to API Reference
Enum
UniTextCommitChanges
Observable result categories changed by one completed text-pipeline pass.
public static readonly UniTextCommitChanges None = 0No observable output changed.
public static readonly UniTextCommitChanges Content = 1 << 0Parsed text, shaping, ranges, or their associated data changed.
public static readonly UniTextCommitChanges Layout = 1 << 1Line breaking or positioned glyph placement changed.
public static readonly UniTextCommitChanges GlyphGeometry = 1 << 2Final glyph faces changed after mesh modifiers.
public static readonly UniTextCommitChanges Appearance = 1 << 3Mesh paint, material inputs, or auxiliary presentation changed without moving glyph faces.
public static readonly UniTextCommitChanges All = Content | Layout | GlyphGeometry | AppearanceEvery observable output category may have changed.
