多个fbx文件怎么合并_【Houdini】批量导入ABC和FBX文件mergeHips文件(搬运)

搬运大神的代码,超级好用~

#!/usr/bin/python

# encoding utf-8

'''

Author: ZhangZhen

Data:

2018.8.9

Email:  [email protected]

WeChat: orpha2010 /  CGgroup

'''

from PySide2.QtWidgets import *

from PySide2.QtCore import *

from PySide2.QtGui import *

import sys,os

class MainWindow(QMainWindow):

def

__init__(self):

super(MainWindow,self).__init__()

self.setWindowTitle("Import Asset

v0.01")

self.resize(600,450)

self.setProperty('houdiniStyle',

True)

self.setStyleSheet(hou.qt.styleSheet())

self.setAutoFillBackground(True)

#ui

self.window = QWidget()

self.fbxBtn = QPushButton("Import

FBX")

self.abcBtn = QPushButton("Import

ABC")

你可能感兴趣的:(多个fbx文件怎么合并)