Atom as Python Editor for Maya

Maya143 字
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。

admin
博学之,审问之,慎思之,明辨之,笃行之。
OωO
开启隐私评论,您的评论仅作者和评论双方可见
评论 ( 1 )
  1. Marni

    I might be beantig a dead horse, but thank you for posting this!

    2017年01月24日回复