From a2d143af2ebbdde9b50a0a5ecb343cc1232abd75 Mon Sep 17 00:00:00 2001 From: Milan Kolar Date: Wed, 20 Feb 2019 17:11:52 +0100 Subject: [PATCH] add layout and assembly creator --- pype/plugins/maya/create/create_assembly.py | 11 +++++++++++ pype/plugins/maya/create/create_layout.py | 11 +++++++++++ 2 files changed, 22 insertions(+) create mode 100644 pype/plugins/maya/create/create_assembly.py create mode 100644 pype/plugins/maya/create/create_layout.py 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"]