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