Example #1
0
def exportSelectedToFile(filePath, withTextures=True):
    """exports the current selection into a file

    :param filePath: the complete path of the file where to export to
    :param withTextures: export materials as Textures, works only if export is obj

    """
    udkUI.callExportSelected(filePath, withTextures)
Example #2
0
def exportSelectedToFile(filePath, withTextures=True):
    """exports the current selection into a file

    :param filePath: the complete path of the file where to export to
    :param withTextures: export materials as Textures, works only if export is obj

    """
    udkUI.callExportSelected(filePath, withTextures)
Example #3
0
def exportMeshToFile(meshSig, filePath, withTextures=True):
    """ exports a single static mesh.

    :param meshSig: the fully qualified mesh name (package.groups.mesh)
    :param filePath: the complete path of the file where to export to
    :param withTextures: export materials as Textures, works only if export is obj

    Exports the mesh by placing it in the map and deleting it after export
    it can export the materials textures as bmp
    
    """
    #TODO: do the stuff
    udkUI.callExportSelected(folder, withTextures)
Example #4
0
def exportMeshToFile(meshSig, filePath, withTextures=True):
    """ exports a single static mesh.

    :param meshSig: the fully qualified mesh name (package.groups.mesh)
    :param filePath: the complete path of the file where to export to
    :param withTextures: export materials as Textures, works only if export is obj

    Exports the mesh by placing it in the map and deleting it after export
    it can export the materials textures as bmp
    
    """
    #TODO: do the stuff
    udkUI.callExportSelected(folder, withTextures)