description updates
This commit is contained in:
@@ -11,11 +11,24 @@
|
||||
"type": "enum",
|
||||
"default": "x1_33",
|
||||
"options": [
|
||||
{ "value": "x1_3", "label": "1.3x" },
|
||||
{ "value": "x1_33", "label": "1.33x" },
|
||||
{ "value": "x1_5", "label": "1.5x" },
|
||||
{ "value": "x2_0", "label": "2x" }
|
||||
]
|
||||
{
|
||||
"value": "x1_3",
|
||||
"label": "1.3x"
|
||||
},
|
||||
{
|
||||
"value": "x1_33",
|
||||
"label": "1.33x"
|
||||
},
|
||||
{
|
||||
"value": "x1_5",
|
||||
"label": "1.5x"
|
||||
},
|
||||
{
|
||||
"value": "x2_0",
|
||||
"label": "2x"
|
||||
}
|
||||
],
|
||||
"description": "Horizontal stretch factor matching the anamorphic lens or adapter."
|
||||
},
|
||||
{
|
||||
"id": "framing",
|
||||
@@ -23,24 +36,50 @@
|
||||
"type": "enum",
|
||||
"default": "fit",
|
||||
"options": [
|
||||
{ "value": "fit", "label": "Fit" },
|
||||
{ "value": "fill", "label": "Fill" }
|
||||
]
|
||||
{
|
||||
"value": "fit",
|
||||
"label": "Fit"
|
||||
},
|
||||
{
|
||||
"value": "fill",
|
||||
"label": "Fill"
|
||||
}
|
||||
],
|
||||
"description": "Fit preserves the whole image; Fill crops to remove borders."
|
||||
},
|
||||
{
|
||||
"id": "pan",
|
||||
"label": "Pan",
|
||||
"type": "vec2",
|
||||
"default": [0.0, 0.0],
|
||||
"min": [-1.0, -1.0],
|
||||
"max": [1.0, 1.0],
|
||||
"step": [0.001, 0.001]
|
||||
"default": [
|
||||
0,
|
||||
0
|
||||
],
|
||||
"min": [
|
||||
-1,
|
||||
-1
|
||||
],
|
||||
"max": [
|
||||
1,
|
||||
1
|
||||
],
|
||||
"step": [
|
||||
0.001,
|
||||
0.001
|
||||
],
|
||||
"description": "Reframes the desqueezed image after fit/fill scaling."
|
||||
},
|
||||
{
|
||||
"id": "outsideColor",
|
||||
"label": "Outside Color",
|
||||
"type": "color",
|
||||
"default": [0.0, 0.0, 0.0, 1.0]
|
||||
"default": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1
|
||||
],
|
||||
"description": "Color used where the remapped image samples outside the source frame."
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user