mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
openpype conformation
This commit is contained in:
parent
64f9f43f5e
commit
5992c5f950
7 changed files with 15 additions and 19 deletions
|
|
@ -1,7 +1,7 @@
|
|||
from avalon import houdini
|
||||
from openpype.hosts.houdini.api import plugin
|
||||
|
||||
|
||||
class CreateCompositeSequence(houdini.Creator):
|
||||
class CreateCompositeSequence(plugin.Creator):
|
||||
"""Composite ROP to Image Sequence"""
|
||||
|
||||
label = "Composite (Image Sequence)"
|
||||
|
|
|
|||
|
|
@ -1,9 +1,8 @@
|
|||
import hou
|
||||
|
||||
from avalon import houdini
|
||||
from openpype.hosts.houdini.api import plugin
|
||||
|
||||
|
||||
class CreateRedshiftROP(houdini.Creator):
|
||||
class CreateRedshiftROP(plugin.Creator):
|
||||
"""Redshift ROP"""
|
||||
|
||||
label = "Redshift ROP"
|
||||
|
|
|
|||
|
|
@ -1,9 +1,8 @@
|
|||
from avalon import houdini
|
||||
|
||||
from colorbleed.houdini import lib
|
||||
from openpype.hosts.houdini.api import plugin
|
||||
from openpype.hosts.houdini.api import lib
|
||||
|
||||
|
||||
class CreateRemotePublish(houdini.Creator):
|
||||
class CreateRemotePublish(plugin.Creator):
|
||||
"""Create Remote Publish Submission Settings node."""
|
||||
|
||||
label = "Remote Publish"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
from avalon import houdini
|
||||
from openpype.hosts.houdini.api import plugin
|
||||
|
||||
|
||||
class CreateUSD(houdini.Creator):
|
||||
class CreateUSD(plugin.Creator):
|
||||
"""Universal Scene Description"""
|
||||
|
||||
label = "USD"
|
||||
|
|
|
|||
|
|
@ -1,10 +1,9 @@
|
|||
import re
|
||||
|
||||
from avalon import api
|
||||
from openpype.hosts.houdini.api import plugin
|
||||
import hou
|
||||
|
||||
|
||||
class CreateUSDModel(api.Creator):
|
||||
class CreateUSDModel(plugin.Creator):
|
||||
"""Author USD Model"""
|
||||
|
||||
label = "USD Model"
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
from avalon import api
|
||||
from openpype.hosts.houdini.api import plugin
|
||||
import hou
|
||||
|
||||
|
||||
class _USDWorkspace(api.Creator):
|
||||
class _USDWorkspace(plugin.Creator):
|
||||
"""Base class to create pre-built USD Workspaces"""
|
||||
|
||||
node_name = None
|
||||
|
|
|
|||
|
|
@ -1,9 +1,8 @@
|
|||
import hou
|
||||
|
||||
from avalon import houdini
|
||||
from openpype.hosts.houdini.api import plugin
|
||||
|
||||
|
||||
class CreateUSDRender(houdini.Creator):
|
||||
class CreateUSDRender(plugin.Creator):
|
||||
"""USD Render ROP in /stage"""
|
||||
|
||||
label = "USD Render"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue