def create(cls, name):
"""
Create a new shader and return the ShaderNetwork that wraps it.
"""
sfx_shader = cmds.shadingNode('ShaderfxShader', asShader=True, name=name)
cmds.shaderfx(sfxnode=sfx_shader, initShaderAttributes=True)
network = cls(sfx_shader)
return network
评论列表
文章目录