Select NUKE 节点,其中 class 个节点以字符串 "OFXuk" 开头

Select NUKE nodes, where class of a nodes starts with string "OFXuk"

知道如何创建可以 select 以 class 名称开头的相同 class 节点的脚本 "OFXuk"

例如,如果我有节点列表,class 如下

OFXuk.ab.cdef.ghi_node1
OFXuk.ab.cdef.ghi_node2
OFXuk.ab.cdef.ghi_node3

我想 select 所有三个节点的共同起始字符串 "OFXuk"

Try the following code snippet for selecting Furnace-class nodes:

import nuke

for index in nuke.allNodes():
    nodeClass = index.Class()

    if nodeClass.__contains__("OFXuk"):
        index.setSelected(True)

希望对您有所帮助。