Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将模拟器集成到 Maya 中。我有一个求解器节点。我想在属性编辑器上放一个按钮,例如调用命令的“模拟”。AETemplates 和 MEL 如何实现这一点?
看看一些使用额外元素的模板,如 AEfileTemplate.mel。您必须使用当前父级将 UI 元素添加到正确的位置。
string $oldParent = `setParent -q`; setParent $parent;
现在您可以继续创建自己的 UI 布局或按钮。