fix hound

This commit is contained in:
Milan Kolar 2021-01-28 11:22:32 +01:00
parent a38abee4d9
commit 9e54747c74
5 changed files with 13 additions and 8 deletions

View file

@ -1,9 +1,6 @@
from avalon import api
import pype.hosts.maya.api.plugin
import os
from avalon import api
from pype.api import get_project_settings
reload(config)
class GpuCacheLoader(api.Loader):
"""Load model Alembic as gpuCache"""

View file

@ -5,7 +5,6 @@ import contextlib
import avalon.maya
import pype.api
from pype.hosts.maya.api import lib
class ExtractAssProxy(pype.api.Extractor):

View file

@ -20,7 +20,10 @@ class ValidateOutRelatedNodeIds(pyblish.api.InstancePlugin):
families = ['animation', "pointcache"]
hosts = ['maya']
label = 'Animation Out Set Related Node Ids'
actions = [pype.hosts.maya.api.action.SelectInvalidAction, pype.api.RepairAction]
actions = [
pype.hosts.maya.api.action.SelectInvalidAction,
pype.api.RepairAction
]
def process(self, instance):
"""Process all meshes"""

View file

@ -20,7 +20,10 @@ class ValidateNodeIdsDeformedShape(pyblish.api.InstancePlugin):
families = ['look']
hosts = ['maya']
label = 'Deformed shape ids'
actions = [pype.hosts.maya.api.action.SelectInvalidAction, pype.api.RepairAction]
actions = [
pype.hosts.maya.api.action.SelectInvalidAction,
pype.api.RepairAction
]
def process(self, instance):
"""Process all the nodes in the instance"""

View file

@ -20,7 +20,10 @@ class ValidateRigOutSetNodeIds(pyblish.api.InstancePlugin):
families = ["rig"]
hosts = ['maya']
label = 'Rig Out Set Node Ids'
actions = [pype.hosts.maya.api.action.SelectInvalidAction, pype.api.RepairAction]
actions = [
pype.hosts.maya.api.action.SelectInvalidAction,
pype.api.RepairAction
]
def process(self, instance):
"""Process all meshes"""