diff --git a/pype/plugins/maya/create/create_assembly.py b/pype/plugins/maya/create/create_assembly.py new file mode 100644 index 0000000000..2a00d4a29a --- /dev/null +++ b/pype/plugins/maya/create/create_assembly.py @@ -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'] diff --git a/pype/plugins/maya/create/create_layout.py b/pype/plugins/maya/create/create_layout.py new file mode 100644 index 0000000000..37fb77aa1b --- /dev/null +++ b/pype/plugins/maya/create/create_layout.py @@ -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"]