nuke: change hex type to color_gui in settings

This commit is contained in:
Jakub Jezek 2022-05-06 13:08:34 +02:00
parent 0c8b7e303a
commit 6a123fcdb9
No known key found for this signature in database
GPG key ID: 730D7C02726179A7
2 changed files with 26 additions and 10 deletions

View file

@ -75,9 +75,14 @@
"value": true
},
{
"type": "hex",
"type": "color_gui",
"name": "tile_color",
"value": "0xff0000ff"
"value": [
186,
35,
35,
255
]
},
{
"type": "text",
@ -123,9 +128,14 @@
"value": true
},
{
"type": "hex",
"type": "color_gui",
"name": "tile_color",
"value": "0xadab1dff"
"value": [
171,
171,
10,
255
]
},
{
"type": "text",
@ -166,9 +176,14 @@
"value": "Deflate"
},
{
"type": "hex",
"type": "color_gui",
"name": "tile_color",
"value": "0x23ff00ff"
"value": [
56,
162,
7,
255
]
},
{
"type": "text",

View file

@ -65,8 +65,8 @@
]
},
{
"key": "hex",
"label": "Hexadecimal (0x)",
"key": "color_gui",
"label": "Color GUI",
"children": [
{
"type": "text",
@ -74,9 +74,10 @@
"label": "Name"
},
{
"type": "text",
"type": "color",
"key": "value",
"label": "Value"
"label": "Value",
"use_alpha": false
}
]
},