Exemplo n.º 1
0
def getObjectInfosFromNames(nameList, cut=False):
    deselectAll()
    selectByNames(nameList)
    unrtext = getUnrealTextFromSelection(cut)
    if unrtext is None:
        return None
    return udkParser.parseActors(unrtext)
Exemplo n.º 2
0
def getObjectInfosFromNames(nameList, cut=False):
    deselectAll()
    selectByNames(nameList)
    unrtext = getUnrealTextFromSelection(cut)
    if unrtext is None:
        return None
    return udkParser.parseActors(unrtext)
Exemplo n.º 3
0
def getObjectInfosFromSelection(cut=False):
    unrtext = getUnrealTextFromSelection(cut)
    if unrtext is None:
        return None
    return udkParser.parseActors(unrtext)
Exemplo n.º 4
0
def getObjectInfosFromSelection(cut=False):
    unrtext = getUnrealTextFromSelection(cut)
    if unrtext is None:
       return None
    return  udkParser.parseActors(unrtext)