def lcTxT_open_selected(*args, **kwargs):
    ''' '''
    textures = pm.ls(sl=True)
    textures = texture.filterForTextures(textures)
    if textures:
        texture.openTextureList(textures)
示例#2
0
def lcTxT_open_all(*args, **kwargs):
  ''' '''
  textures = pm.ls(type='file')
  if textures:
    texture.openTextureList(textures)
def lcTxT_open_all(*args, **kwargs):
    ''' '''
    textures = pm.ls(type='file')
    if textures:
        texture.openTextureList(textures)
示例#4
0
def lcTxT_open_selected(*args, **kwargs):
  ''' '''
  textures = pm.ls(sl=True)
  textures = texture.filterForTextures(textures)
  if textures:
    texture.openTextureList(textures)