Files
hyperframes/registry/components/facet-morph/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

65 lines
2.3 KiB
JSON

{
"$schema": "https://hyperframes.heygen.com/schema/registry-item.json",
"name": "facet-morph",
"type": "hyperframes:component",
"title": "Facet Morph",
"description": "A faceted low-poly mass of 36 triangles continuously reshapes between three authored silhouettes (blob, mark, badge) with per-facet flat shading that recomputes as the vertices move. Light reads from the upper left; lit facets lift toward a pale accent-tinted tone while turned-away facets fall toward near-black. One calm continuous morph, then a settled hold.",
"tags": ["motion-primitive", "intro", "morph", "low-poly", "svg", "deterministic"],
"jobs": ["reveal"],
"family": "intros-reveals",
"profile": "holdable",
"evidence": "Wave L2 frame study: ordinaryfolkco 2001090228958752945 sheet-02, the continuously reshaping faceted mass under a traveling light band",
"syncPoints": [{ "id": "form-lock", "phase": "in", "offset": 3.95 }],
"files": [
{
"path": "facet-morph.html",
"target": "compositions/components/facet-morph.html",
"type": "hyperframes:snippet"
}
],
"variables": [
{
"id": "forms",
"type": "string",
"role": "content",
"label": "Forms",
"description": "Comma-separated silhouette sequence from blob, mark, badge.",
"default": "blob,mark,badge"
},
{
"id": "hold_last",
"type": "boolean",
"role": "timing",
"label": "Hold last",
"description": "True settles dead still on the final silhouette; false keeps the mass slowly breathing through the hold.",
"default": true
},
{
"id": "accent",
"type": "enum",
"role": "style",
"label": "Accent",
"description": "Tint of the lit facets.",
"default": "green",
"options": [
{ "value": "green", "label": "Green" },
{ "value": "blue", "label": "Blue" },
{ "value": "violet", "label": "Violet" }
]
},
{
"id": "exit",
"type": "enum",
"role": "timing",
"label": "Exit",
"description": "Outgoing transition. None holds the settled mass.",
"default": "none",
"options": [
{ "value": "none", "label": "None" },
{ "value": "fade", "label": "Fade" },
{ "value": "up", "label": "Up" }
]
}
]
}