Hello i wont to create a class with multiple function each function i need to create its own public Members so i did this but it gives me an error
import maya.cmds as cmds
class creatingShadingNode():
def _FileTexture( self, name = 'new' , path = '' , place2dT = None ):
# craeting file texture
mapping = [
['coverage', 'coverage'],
['translateFrame', 'translateFrame'],
['rotateFrame', 'rotateFrame'],
['mirrorU', 'mirrorU'],
['mirrorV', 'mirrorV']
]
file = cmds.shadingNode ( 'file' , asTexture = 1 , isColorManaged = 1 , n = name + '_file' )
if not place2dT:
place2dT = cmds.shadingNode ( 'place2dTexture' , asUtility = 1 , n = name + '_p2d' )
for con in mapping:
cmds.connectAttr( place2dT + '.' + con[0] , file + '.' + con[1] , f = 1 )
if path:
cmds.setAttr( file + '.fileTextureName' , path, type = 'string' )
self.File = file
self.P2d = place2dT
test = creatingShadingNode()._FileTexture(name = 'test' , path = 'test\test' )
print test.File
i get line 1: 'NoneType' object has no attribute 'File'