Atom是github内部的开源编辑软件,功能丰富,可以在社区上找到各类扩展插件,其中也包括MAYA,NUKE等软件的支持,可以把代码直接发送到MAYA等软件中执行,非常快捷高效。
安装:
安装Python时注意要选择上“Add Python.exe to Path"。当然如果不选择也可以,就是后面需要手动将Python.exe添加到 Path
环境变量中。
启动Atom,在Settings中搜索“MAYA”,找到扩展包选择安装。
下面需要给MAYA创建 userSetup.py
:
import maya.cmds as cmds
cmds.commandPort(name=":7005", sourceType="python")
启动MAYA测试
在Atom中创建:
import maya.cmds as cmds
cmds.polyCube()
快捷键“Ctrl-Alt-R”运行下。
在MAYA中会创建出一个polyCube。
I might be beantig a dead horse, but thank you for posting this!