Files
hyperframes/registry/components/cursor-glyph-trail/registry-item.json
Miguel Ángel 9734578e60 feat(registry): bring back the video-primitive moves (#3169)
Restores the 208 catalog items reverted after their previews 404'd in
production, this time on the payload mechanism rather than the .html files
that caused the outage.

The generator no longer writes a preview document to docs/public. That writer,
and the machinery under it, existed only to produce files the docs host
discards, so it is gone rather than bypassed. Items now embed the composition
itself via a payload, which is what the previous change already does for the
items that were already in the catalog.

The variables explorer is parked, not restored: it drove its preview through
the same unpublished .html path, so it would have shown an empty frame. Items
that declare variables get the live player plus the static variables table, and
reconnecting the explorer to payloads is a follow-up.
2026-08-10 18:46:03 -04:00

91 lines
2.8 KiB
JSON

{
"$schema": "https://hyperframes.heygen.com/schema/registry-item.json",
"name": "cursor-glyph-trail",
"type": "hyperframes:component",
"title": "Cursor Glyph Trail",
"description": "An actor travels an authored path depositing small dithered glyphs at its past positions, each popping in and decaying in place, stamp rate scaling with the actor's velocity.",
"tags": ["motion-primitive", "demonstrate", "trail", "cursor", "glyphs", "deterministic"],
"jobs": ["demonstrate"],
"family": "demonstrate",
"profile": "stamp-decay",
"evidence": "Wave L1 frame study: jh3yy stamp-and-decay contact sheet (2069614221747224613/sheet-01)",
"syncPoints": [{ "id": "travel-complete", "phase": "in", "offset": 2.4 }],
"files": [
{
"path": "cursor-glyph-trail.html",
"target": "compositions/components/cursor-glyph-trail.html",
"type": "hyperframes:snippet"
}
],
"variables": [
{
"id": "glyphs",
"type": "string",
"role": "content",
"label": "Glyphs",
"description": "Stamp charset; one glyph per stamp is chosen deterministically.",
"default": "░▒▓+·×"
},
{
"id": "density",
"type": "enum",
"role": "style",
"label": "Density",
"description": "Arc-length spacing between stamps along the path.",
"default": "med",
"options": [
{ "value": "low", "label": "Low" },
{ "value": "med", "label": "Medium" },
{ "value": "high", "label": "High" }
]
},
{
"id": "path",
"type": "enum",
"role": "timing",
"label": "Path",
"description": "Authored travel path preset.",
"default": "sweep",
"options": [
{ "value": "sweep", "label": "Sweep" },
{ "value": "arc", "label": "Arc" },
{ "value": "zigzag", "label": "Zigzag" }
]
},
{
"id": "fade",
"type": "number",
"role": "timing",
"label": "Fade",
"description": "Per-stamp decay window in seconds, clamped 0.3 to 1.5.",
"default": 0.8
},
{
"id": "accent",
"type": "enum",
"role": "style",
"label": "Accent",
"description": "Trail and actor color: green rides --brand, blue rides --accent, violet rides --accent-2.",
"default": "green",
"options": [
{ "value": "green", "label": "Green" },
{ "value": "blue", "label": "Blue" },
{ "value": "violet", "label": "Violet" }
]
},
{
"id": "exit",
"type": "enum",
"role": "timing",
"label": "Exit",
"description": "Optional departure. Default none: the settled actor holds until the frame cuts.",
"default": "none",
"options": [
{ "value": "none", "label": "None" },
{ "value": "fade", "label": "Fade" },
{ "value": "up", "label": "Up" }
]
}
]
}