Back to API Reference
Enum

UniTextCommitChanges

Observable result categories changed by one completed text-pipeline pass.

public static readonly UniTextCommitChanges None = 0

No observable output changed.

public static readonly UniTextCommitChanges Content = 1 << 0

Parsed text, shaping, ranges, or their associated data changed.

public static readonly UniTextCommitChanges Layout = 1 << 1

Line breaking or positioned glyph placement changed.

public static readonly UniTextCommitChanges GlyphGeometry = 1 << 2

Final glyph faces changed after mesh modifiers.

public static readonly UniTextCommitChanges Appearance = 1 << 3

Mesh paint, material inputs, or auxiliary presentation changed without moving glyph faces.

public static readonly UniTextCommitChanges All = Content | Layout | GlyphGeometry | Appearance

Every observable output category may have changed.