Package nukescripts :: Module select
[hide private]
[frames] | no frames]

Source Code for Module nukescripts.select

 1  # Copyright (c) 2009 The Foundry Visionmongers Ltd.  All Rights Reserved. 
 2   
 3  import nuke 
 4   
 5   
6 -def select_by_name():
7 """Menu command to select nodes by a glob-pattern name. 8 This function is only maintained for backwards compatibility. 9 Please use nuke.selectPattern() instead.""" 10 nuke.selectPattern()
11 12
13 -def select_similar(_type):
14 "Included only for compatibility. Use nuke.selectSimilar()." 15 nuke.selectSimilar(_type)
16