Added clock time
Some checks failed
CI / React UI Build (push) Successful in 11s
CI / Native Windows Build And Tests (push) Successful in 1m32s
CI / Windows Release Package (push) Failing after 2m7s

This commit is contained in:
2026-05-06 12:38:23 +10:00
parent d2cf852eb2
commit 414ef62479
17 changed files with 335 additions and 18 deletions

View File

@@ -0,0 +1,36 @@
{
"id": "utc-clock",
"name": "UTC Clock",
"description": "Shows an analog clock driven by the host PC clock. Uses UTC seconds plus the PC UTC offset exposed to shaders.",
"category": "Utility",
"entryPoint": "shadeVideo",
"parameters": [
{
"id": "showLocalTime",
"label": "Show Local Time",
"type": "bool",
"default": true
},
{
"id": "clockScale",
"label": "Clock Scale",
"type": "float",
"default": 0.7,
"min": 0.25,
"max": 0.95,
"step": 0.01
},
{
"id": "faceColor",
"label": "Face Color",
"type": "color",
"default": [0.03, 0.04, 0.05, 0.82]
},
{
"id": "accentColor",
"label": "Accent Color",
"type": "color",
"default": [0.1, 0.62, 0.86, 1.0]
}
]
}