mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
fix hound
This commit is contained in:
parent
a38abee4d9
commit
9e54747c74
5 changed files with 13 additions and 8 deletions
|
|
@ -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"""
|
||||
|
|
|
|||
|
|
@ -5,7 +5,6 @@ import contextlib
|
|||
|
||||
import avalon.maya
|
||||
import pype.api
|
||||
from pype.hosts.maya.api import lib
|
||||
|
||||
|
||||
class ExtractAssProxy(pype.api.Extractor):
|
||||
|
|
|
|||
|
|
@ -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"""
|
||||
|
|
|
|||
|
|
@ -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"""
|
||||
|
|
|
|||
|
|
@ -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"""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue