Skip to content

Commit

Permalink
chore(nuke): pack-project: skip scripted gizmo
Browse files Browse the repository at this point in the history
  • Loading branch information
NateScarlet committed Jan 12, 2023
1 parent 4ce2c2e commit 1341569
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wulifang/nuke/_pack_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def pack_project():

gizmo_count = 0
for n in nuke.allNodes():
if isinstance(n, nuke.Gizmo):
if isinstance(n, nuke.Gizmo) and n.Class() not in nuke.knobChangeds:
gizmo_to_group(n)
gizmo_count += 1
if gizmo_count:
Expand Down

0 comments on commit 1341569

Please sign in to comment.