1

我正在尝试创建一个在 nuke 启动时打开并设置一些参数的面板。

我想要做的是在同一个面板上有一系列下拉菜单,下拉菜单中的项目将来自文件夹。

我遇到的问题是,我想设置第一个下拉菜单,从这个下拉菜单的选择中,第二个下拉菜单反映了这个选择,它的菜单项反映了每次下拉的变化等等,基本上是挖一个文件夹结构,但每个下拉结果都使用一个变量。

我还没有走多远,但是

    import os
import nuke
import nukescripts

## define panel

pm = nuke.Panel("project Manager")

## create pulldown menus

jobPath = pm.addEnumerationPulldown( 'project', os.walk('/Volumes/Production_02/000_jobs/projects').next()[1])


seqPath = pm.addEnumerationPulldown('sequence', os.walk('/Volumes/Production_02/000_jobs/projects').next()[1])


shotPath = pm.addEnumerationPulldown('shot', os.walk('/Volumes/Production_02/000_jobs/projects').next()[1])


print jobPath
print seqPath
print shotPath

#pm.addKnob(job)
#pm.addKnob(seq)
#pm.addKnob(shot)

pm.show()

下拉菜单中出现的字符串也被 [' ' 等包围?

干杯-亚当

4

1 回答 1

0

您可能想要使用PythonPanel,而不是 old-style Panel,它基本上是一个 TCL 包装器。这样,您可以在面板中的旋钮更改时获得回调。

这是一个基本示例:

导入操作系统

import nuke
import nukescripts.panels


class ProjectManager(nukescripts.panels.PythonPanel):
    def __init__(self, rootDir='/Volumes/Production_02/000_jobs/projects'):
        super(ProjectManager, self).__init__('ProjectManager', 'id.ProjectManager')

        self.rootDir = rootDir
        self.project = self.sequence = self.shot = None

        projectDirs = [x for x in os.listdir(rootDir)
                       if os.path.isdir(os.path.join(rootDir, x))]
        self.project = projectDirs[0]
        self.projectEnum = nuke.Enumeration_Knob('project', 'project', projectDirs)
        self.addKnob(self.projectEnum)

        self.seqEnum = nuke.Enumeration_Knob('sequence', 'sequence', [])
        self.addKnob(self.seqEnum)

        self.shotEnum = nuke.Enumeration_Knob('shot', 'shot', [])
        self.addKnob(self.shotEnum)

        self._projectChanged()

    def _projectChanged(self):
        self.project = self.projectEnum.value()
        projectDir = os.path.join(self.rootDir, self.project)
        projectSeqDirs = [x for x in os.listdir(projectDir)
                          if os.path.isdir(os.path.join(projectDir, x))]
        self.seqEnum.setValues(projectSeqDirs)
        self._sequenceChanged()

    def _sequenceChanged(self):
        s = self.seqEnum.value()
        if s:
            self.sequence = s
            seqDir = os.path.join(self.rootDir, self.project, s)
            seqShotDirs = [x for x in os.listdir(seqDir)
                           if os.path.isdir(os.path.join(seqDir, x))]
        else:
            self.sequence = None
            seqShotDirs = []
        self.shotEnum.setValues(seqShotDirs)
        self._shotChanged()

    def knobChanged(self, knob):
        if knob is self.projectEnum:
            self._projectChanged()
        elif knob is self.seqEnum:
            self._sequenceChanged()
        elif knob is self.shotEnum:
            self.shot = self.shotEnum.value()


p = ProjectManager()
if p.showModalDialog():
    print p.project, p.sequence, p.shot

请注意,此示例仅用于演示PythonPanel子类的基本设计。它有一些小的逻辑问题(在 Nuke 的上下文中),并且写得尽可能清晰,而不是尽可能高效或惯用。

无论如何,希望这能让您了解如何构建您所追求的东西。

于 2014-12-08T01:07:02.130 回答