import maya.cmds as cmds
class NestedLayouts:
def __init__(self):
self.win = cmds.window(title = "Nested Layouts", widthHeight = (300,200))
cmds.columnLayout()
cmds.rowLayout(numberOfColumns=2)
cmds.text(label = "input One:")
self.inputOne = cmds.intField()
cmds.setParent("..")
cmds.rowLayout(nu
Maya Programming with Python Cookbook 2
最新推荐文章于 2024-11-14 20:40:25 发布