|
Project Information
|
PyMax is originally developed by Blur Studio as Py3dsMax. But, Py3dsMax and other tools are not opened since 03/29/2010. Then we decide to maintain by own. OMFG...Blur guy is back!! That's very good news for artists. We will survey latest Py3dsMax and decide what we do ;-) How to Install
!!!!NOTICE!!!! 3ds max 2010 and 2011 use their own Qt DLL internally. it's undocumented, not officially announced. we have to avoid this problem.
Sample coderun python codeversion_info.ms s = " import sys print sys.version_info() " IPyMax.eval(s) select hierarchyselectTree.py from Py3dsMax import mxs
def selectTree(node, selectMore=False):
# print '====== selectTree ======'
if selectMore == True:
mxs.selectMore(node)
else:
mxs.select(node)
children = node.Children
for c in children:
selectTree(c, selectMore=True)
|