mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
add layout and assembly creator
This commit is contained in:
parent
9d2160dd0f
commit
a2d143af2e
2 changed files with 22 additions and 0 deletions
11
pype/plugins/maya/create/create_assembly.py
Normal file
11
pype/plugins/maya/create/create_assembly.py
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
import avalon.maya
|
||||
|
||||
|
||||
class CreateAssembly(avalon.maya.Creator):
|
||||
"""A grouped package of loaded content"""
|
||||
|
||||
name = "assembly"
|
||||
label = "Assembly"
|
||||
family = "assembly"
|
||||
icon = "boxes"
|
||||
defaults = ['Main']
|
||||
11
pype/plugins/maya/create/create_layout.py
Normal file
11
pype/plugins/maya/create/create_layout.py
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
import avalon.maya
|
||||
|
||||
|
||||
class CreateSetDress(avalon.maya.Creator):
|
||||
"""A grouped package of loaded content"""
|
||||
|
||||
name = "layout"
|
||||
label = "Layout"
|
||||
family = "layout"
|
||||
icon = "map-marked"
|
||||
defaults = ["Main"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue