mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
added box conversion to nuke knobs conversions
This commit is contained in:
parent
4fdcab4000
commit
94568326e8
1 changed files with 3 additions and 0 deletions
|
|
@ -645,6 +645,9 @@ def _convert_nuke_knobs(knobs):
|
|||
elif knob_type == "vector_3d":
|
||||
value = [value["x"], value["y"], value["z"]]
|
||||
|
||||
elif knob_type == "box":
|
||||
value = [value["x"], value["y"], value["r"], value["t"]]
|
||||
|
||||
new_knob[value_key] = value
|
||||
return new_knobs
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue