mirror of
https://github.com/heygen-com/hyperframes.git
synced 2026-09-03 04:38:33 +00:00
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.
68 lines
2.0 KiB
JSON
68 lines
2.0 KiB
JSON
{
|
|
"$schema": "https://hyperframes.heygen.com/schema/registry-item.json",
|
|
"name": "ink-bleed-reveal",
|
|
"type": "hyperframes:component",
|
|
"title": "Ink Bleed Reveal",
|
|
"description": "Liquid ink blooms through paper under a gooey blur-plus-threshold filter, merges, then contracts as a crisp slotted mark resolves beneath it, with static seeded paper grain riding the result.",
|
|
"tags": [
|
|
"motion-primitive",
|
|
"texture",
|
|
"reveal",
|
|
"gooey",
|
|
"svg-filter",
|
|
"deterministic",
|
|
"experiment"
|
|
],
|
|
"jobs": ["reveal"],
|
|
"family": "texture",
|
|
"profile": "materialize",
|
|
"evidence": "Wave M7 experiment: liquid-threshold gooey recipe (wild-scout #3, Jakubowski / Ethode referents), closed-form blob field, no physics state",
|
|
"syncPoints": [{ "id": "mark-locked", "phase": "in", "offset": 2.8 }],
|
|
"files": [
|
|
{
|
|
"path": "ink-bleed-reveal.html",
|
|
"target": "compositions/components/ink-bleed-reveal.html",
|
|
"type": "hyperframes:snippet"
|
|
}
|
|
],
|
|
"variables": [
|
|
{
|
|
"id": "blobs",
|
|
"type": "number",
|
|
"role": "style",
|
|
"label": "Blobs",
|
|
"description": "How many ink blobs bleed and merge (4 to 6).",
|
|
"default": 5,
|
|
"min": 4,
|
|
"max": 6,
|
|
"step": 1
|
|
},
|
|
{
|
|
"id": "accent",
|
|
"type": "enum",
|
|
"role": "style",
|
|
"label": "Accent",
|
|
"description": "Ink tint: 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 revealed mark holds until the frame cuts.",
|
|
"default": "none",
|
|
"options": [
|
|
{ "value": "none", "label": "None" },
|
|
{ "value": "fade", "label": "Fade" },
|
|
{ "value": "up", "label": "Up" }
|
|
]
|
|
}
|
|
]
|
|
}
|