Pymel FBX export
import pymel.core as pm
pm.loadPlugin("fbxmaya") # 플러그인 로드
filepath = "F:/fbxexporttest/test.fbx" # 파일 위치
pm.mel.FBXExport(f=filepath,s=True) # f= "파일경로" s="선택한 오브젝트"
import pymel.core as pm
pm.loadPlugin("fbxmaya") # 플러그인 로드
filepath = "F:/fbxexporttest/test.fbx" # 파일 위치
pm.mel.FBXExport(f=filepath,s=True) # f= "파일경로" s="선택한 오브젝트"
0 comments