0

嗨,为 Maya 编写 python 脚本的初学者。我正在尝试编写一个脚本来自动打开 Maya 文件及其引用的过程。通常,当父文件和参考文件位于不同的目标时,Maya 无法打开被引用的文件,您必须浏览文件名才能打开它。我正在尝试自动化这个。当用户试图打开一个文件时,它应该打开它的所有引用。到目前为止,我已经得到了这个,但主要部分是我感到困惑。

import pymel.api as api

def callFunc():
    print "hello world" # just a print cmd to check

print "registering a file reference call back"
cb = api.MSceneMessage_addCallback(api.MSceneMessage.kAfterOpen, callFunc())

def callbackOff():
    api.MSceneMessage.removeCallback(cb)

因此,当调用函数 callFunc() 时,这就是所有动作发生的地方。现在我不知道如何进行。

4

1 回答 1

2

除非有使用 pymel 的特定原因,否则我会使用常规的 Maya 命令:

import maya.cmds as cmds
import os

def openFileAndRemapRefs():
    multipleFilters = "Maya Files (*.ma *.mb);;Maya ASCII (*.ma);;Maya Binary (*.mb);;All Files (*.*)"

    # Choose file to open
    filename = cmds.fileDialog2(fileFilter=multipleFilters, dialogStyle=2, fileMode=1)

    # Open file with no reference loaded
    cmds.file( filename[0], open=True, force=True );

    # Dir containing the references
    refDir = 'C:/References'

    # A list of any references found in the scene
    references = cmds.ls(type='reference')

    # For each reference found in scene, load it with the path leading up to it replaced
    for ref in references:
        refFilepath = cmds.referenceQuery(ref, f=True)
        refFilename = os.path.basename( refFilepath )       
        print 'Reference ' + ref + ' found at: ' + cmds.referenceQuery(ref, f=True)   
        cmds.file( os.path.join(refDir, refFilename), loadReference=ref, options='v=0;')

openFileAndRemapRefs()

有关 和 的更多选项fileDialog2file请查看位于http://download.autodesk.com/global/docs/maya2014/en_us/CommandsPython/index.html的 Maya Python 文档

于 2013-11-03T18:43:56.253 回答