예제 #1
0
def getObjectInfosFromNames(nameList, cut=False):
    deselectAll()
    selectByNames(nameList)
    unrtext = getUnrealTextFromSelection(cut)
    if unrtext is None:
        return None
    return udkParser.parseActors(unrtext)
예제 #2
0
파일: udkCommand.py 프로젝트: m2u/m2u
def getObjectInfosFromNames(nameList, cut=False):
    deselectAll()
    selectByNames(nameList)
    unrtext = getUnrealTextFromSelection(cut)
    if unrtext is None:
        return None
    return udkParser.parseActors(unrtext)
예제 #3
0
def getObjectInfosFromSelection(cut=False):
    unrtext = getUnrealTextFromSelection(cut)
    if unrtext is None:
        return None
    return udkParser.parseActors(unrtext)
예제 #4
0
파일: udkCommand.py 프로젝트: m2u/m2u
def getObjectInfosFromSelection(cut=False):
    unrtext = getUnrealTextFromSelection(cut)
    if unrtext is None:
       return None
    return  udkParser.parseActors(unrtext)