From bd240bb7267db8c54f1ae55727b2e9f20538f8c1 Mon Sep 17 00:00:00 2001 From: aardschok Date: Thu, 20 Jul 2017 11:54:55 +0200 Subject: [PATCH] added texture instances, look no longer has suffix INST --- colorbleed/plugins/maya/create/colorbleed_look.py | 2 +- colorbleed/plugins/maya/create/colorbleed_texture.py | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/colorbleed/plugins/maya/create/colorbleed_look.py b/colorbleed/plugins/maya/create/colorbleed_look.py index b93673b523..3cfb7423c3 100644 --- a/colorbleed/plugins/maya/create/colorbleed_look.py +++ b/colorbleed/plugins/maya/create/colorbleed_look.py @@ -7,7 +7,7 @@ class CreateLook(avalon.maya.Creator): name = "lookDefault" label = "Look Dev" - family = "colorbleed.look" + family = "colorbleed.lookdev" def __init__(self, *args, **kwargs): super(CreateLook, self).__init__(*args, **kwargs) diff --git a/colorbleed/plugins/maya/create/colorbleed_texture.py b/colorbleed/plugins/maya/create/colorbleed_texture.py index e69de29bb2..1080f1c6a1 100644 --- a/colorbleed/plugins/maya/create/colorbleed_texture.py +++ b/colorbleed/plugins/maya/create/colorbleed_texture.py @@ -0,0 +1,9 @@ +import avalon.maya + + +class CreateTexture(avalon.maya.Creator): + """Polygonal geometry for animation""" + + name = "texturesDefault" + label = "Textures" + family = "colorbleed.texture" \ No newline at end of file