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