createGlyphField#solidColor¶
Summary¶
createGlyphField#solidColor gets or sets the RGBA value used by colorMode = "solid". Assignment copies the tuple. The getter returns the stored tuple by reference; treat it as read-only and assign a new tuple to make a tracked change.
Syntax¶
GlyphField.solidColor: Color4
const value = glyphField.solidColor;
glyphField.solidColor = [0.2, 0.6, 1, 1];
Returns¶
Color4 - Stored RGBA tuple, returned by reference.