Schemas / Font (UFO / variable)
rig.font.anchor
v0.31.0 · draft 1 field 1 required
Fields
| Field | Type | Meaning | |
|---|---|---|---|
point |
vec2 | required | Position in font units (y-up, baseline origin) |
Named point on a glyph (UFO anchor). Format when present.
Not rig.spatial.anchor (3×3 registration cell) and not rig.spatial.vertex (scene locator). Compose rig.meta.named for the UFO anchor name (top, bottom, ogonek).
Live on a child of the rig.font.glyph.
JSON Schema
Resolves at https://rig.works/schemas/rig.font.anchor.schema.json —
raw file.
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://rig.works/schemas/rig.font.anchor.schema.json",
"title": "rig.font.anchor",
"type": "object",
"additionalProperties": false,
"properties": {
"point": {
"$ref": "./_defs.schema.json#/$defs/vec2"
}
},
"required": [
"point"
]
}