mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 05:14:40 +01:00
added Creator plugin for houdini and fixed inheritance in it's creators
This commit is contained in:
parent
22a1a711c6
commit
c154aa5993
4 changed files with 12 additions and 6 deletions
6
pype/hosts/houdini/api/plugin.py
Normal file
6
pype/hosts/houdini/api/plugin.py
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
from avalon import houdini
|
||||
from pype.api import PypeCreatorMixin
|
||||
|
||||
|
||||
class Creator(PypeCreatorMixin, houdini.Creator):
|
||||
pass
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
from avalon import houdini
|
||||
from pype.hosts.houdini.api import plugin
|
||||
|
||||
|
||||
class CreateAlembicCamera(houdini.Creator):
|
||||
class CreateAlembicCamera(plugin.Creator):
|
||||
"""Single baked camera from Alembic ROP"""
|
||||
|
||||
name = "camera"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
from avalon import houdini
|
||||
from pype.hosts.houdini.api import plugin
|
||||
|
||||
|
||||
class CreatePointCache(houdini.Creator):
|
||||
class CreatePointCache(plugin.Creator):
|
||||
"""Alembic ROP to pointcache"""
|
||||
|
||||
name = "pointcache"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
from avalon import houdini
|
||||
from pype.hosts.houdini.api import plugin
|
||||
|
||||
|
||||
class CreateVDBCache(houdini.Creator):
|
||||
class CreateVDBCache(plugin.Creator):
|
||||
"""OpenVDB from Geometry ROP"""
|
||||
|
||||
name = "vbdcache"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue