mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-27 14:22:37 +01:00
fixed issue with clashing plugins
This commit is contained in:
parent
41f07dbdb4
commit
0f2f326e6e
1 changed files with 3 additions and 3 deletions
|
|
@ -4,8 +4,8 @@ import avalon.maya
|
|||
from colorbleed.maya import lib
|
||||
|
||||
|
||||
class CreateYetiRig(avalon.maya.Creator):
|
||||
"""Output for procedural plugin nodes ( Yeti / XGen / etc)"""
|
||||
class CreateYetiCache(avalon.maya.Creator):
|
||||
"""Output for procedural plugin nodes of Yeti """
|
||||
|
||||
name = "yetiDefault"
|
||||
label = "Yeti Cache"
|
||||
|
|
@ -13,7 +13,7 @@ class CreateYetiRig(avalon.maya.Creator):
|
|||
icon = "pagelines"
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
super(CreateYetiRig, self).__init__(*args, **kwargs)
|
||||
super(CreateYetiCache, self).__init__(*args, **kwargs)
|
||||
|
||||
data = OrderedDict(self.data)
|
||||
data["peroll"] = 0
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue