Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
Merge pull request #3841 from BigRoy/maya_yeti_fix_name_clash
Browse files Browse the repository at this point in the history
Maya + Yeti: Fix yeti cache load using wrong name in edge case
  • Loading branch information
antirotor authored Nov 15, 2022
2 parents ffac58e + f2b6e95 commit a4ec78b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions openpype/hosts/maya/plugins/load/load_yeti_cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ def load(self, context, name=None, namespace=None, data=None):

c = colors.get(family)
if c is not None:
cmds.setAttr(group_name + ".useOutlinerColor", 1)
cmds.setAttr(group_name + ".outlinerColor",
cmds.setAttr(group_node + ".useOutlinerColor", 1)
cmds.setAttr(group_node + ".outlinerColor",
(float(c[0])/255),
(float(c[1])/255),
(float(c[2])/255)
Expand Down

0 comments on commit a4ec78b

Please sign in to comment.