| 1 |
{ |
| 2 |
"$schema": "https://json-schema.org/draft/2020-12/schema", |
| 3 |
"$id": "extendify/launch-global/background", |
| 4 |
"title": "Background", |
| 5 |
"type": "object", |
| 6 |
"additionalProperties": false, |
| 7 |
"properties": { |
| 8 |
"--ext-ui-bg-color-1": { |
| 9 |
"type": "string", |
| 10 |
"default": "", |
| 11 |
"x-card": "Colors", |
| 12 |
"x-label": "Color 1", |
| 13 |
"x-control": "color" |
| 14 |
}, |
| 15 |
"--ext-ui-bg-color-2": { |
| 16 |
"type": "string", |
| 17 |
"default": "", |
| 18 |
"x-card": "Colors", |
| 19 |
"x-label": "Color 2", |
| 20 |
"x-control": "color" |
| 21 |
}, |
| 22 |
"--ext-ui-bg-color-3": { |
| 23 |
"type": "string", |
| 24 |
"default": "", |
| 25 |
"x-card": "Colors", |
| 26 |
"x-label": "Color 3", |
| 27 |
"x-control": "color", |
| 28 |
"x-note": "Some shaders use only one or two of these." |
| 29 |
}, |
| 30 |
"--ext-ui-bg-speed": { |
| 31 |
"type": "number", |
| 32 |
"minimum": 0, |
| 33 |
"maximum": 3, |
| 34 |
"multipleOf": 0.05, |
| 35 |
"default": 1, |
| 36 |
"x-card": "Motion", |
| 37 |
"x-label": "Speed", |
| 38 |
"x-control": "number", |
| 39 |
"x-unit": "\u00d7" |
| 40 |
}, |
| 41 |
"--ext-ui-bg-scale": { |
| 42 |
"type": "number", |
| 43 |
"minimum": 0.2, |
| 44 |
"maximum": 3, |
| 45 |
"multipleOf": 0.05, |
| 46 |
"default": 1, |
| 47 |
"x-card": "Motion", |
| 48 |
"x-label": "Scale", |
| 49 |
"x-control": "number", |
| 50 |
"x-unit": "\u00d7" |
| 51 |
}, |
| 52 |
"--ext-ui-bg-intensity": { |
| 53 |
"type": "number", |
| 54 |
"minimum": 0, |
| 55 |
"maximum": 2, |
| 56 |
"multipleOf": 0.05, |
| 57 |
"default": 1, |
| 58 |
"x-card": "Motion", |
| 59 |
"x-label": "Intensity", |
| 60 |
"x-control": "number", |
| 61 |
"x-unit": "\u00d7" |
| 62 |
}, |
| 63 |
"--ext-ui-bg-offset-x": { |
| 64 |
"type": "number", |
| 65 |
"minimum": -1, |
| 66 |
"maximum": 1, |
| 67 |
"multipleOf": 0.05, |
| 68 |
"default": 0, |
| 69 |
"x-card": "Center", |
| 70 |
"x-label": "Offset X", |
| 71 |
"x-control": "number" |
| 72 |
}, |
| 73 |
"--ext-ui-bg-offset-y": { |
| 74 |
"type": "number", |
| 75 |
"minimum": -1, |
| 76 |
"maximum": 1, |
| 77 |
"multipleOf": 0.05, |
| 78 |
"default": 0, |
| 79 |
"x-card": "Center", |
| 80 |
"x-label": "Offset Y", |
| 81 |
"x-control": "number" |
| 82 |
}, |
| 83 |
"bgSource": { |
| 84 |
"type": "string", |
| 85 |
"x-card": "Custom code", |
| 86 |
"x-label": "Code", |
| 87 |
"x-control": "code", |
| 88 |
"x-feeds": "the fragment shader the flow compiles" |
| 89 |
} |
| 90 |
} |
| 91 |
} |
| 92 |
|