max各种相机导出到ue4匹配镜头的工具集

总览

 rollout export_UE4Cam_v2 "导出UE4Cam_v2:半自动" width:200 height:120(HyperLink  explain "在打开的max文件中使用" pos:[25,12] width:200 height:15 color:(color 255 155 0)	 GroupBox grp1 "要导出的相机名" pos:[5,28] width:179 height:40pickbutton OutCam "拾取相机" pos:[20,40] width:150 height:20GroupBox grp2 "要导出的fbx文件名" pos:[5,70] width:179 height:50button	 bt_create	"Create UE4 Camera" pos:[20,85] width:150 height:32 enabled:true-----逐行写入文本------------
fn format_txt FilePath filetext1 filetext2=
(	if doesFileExist FilePath == truethen(fin = openfile FilePath mode:"r+"seek fin #eoftxt = filetext1+RenderWidth as string+"\n"+filetext2+RenderHeight as string+"\n"format txt to:finclose fin)else(newfile = createFile FilePath writeBOM:trueclose newfileformat_txt FilePath filetext1 filetext2)
)
-----end逐行写入文本-----------------on OutCam picked obj do(OutCam.text = obj.name)on bt_create pressed do(		Freecamera fov:45 targetDistance:314.512 nearclip:1 farclip:1000 nearrange:0 farrange:1000 mpassEnabled:off mpassRenderPerPass:off pos:[0,0,0] isSelected:onmycam = OutCam.text$.name = mycamUE4CAM =$MAXCAM =getnodebyname mycamUE4CAM.Position=MAXCAM.positionUE4CAM.FOV=MAXCAM.FOV--位置约束UE4CAM.Position.controller= Position_Constraint ()A = UE4CAM.Position.controllerA.appendTarget MAXCAM 100--方向约束UE4CAM.rotation.controller= Orientation_Constraint ()B = UE4CAM.rotation.controllerB.appendTarget MAXCAM 100--开始塌陷local forceUpdate = keyboard.shiftPressed -- if SHIFT is pressed when the macro is called, a viewport redraw is enforced for each timestep to ensure a full update of all controllersif forceUpdate then format "MB Collapse: Enforcing full viewport update. This might be slow but will ensure proper updating of all controllers\n"local p = undefinedlocal old_prs_ctrl = copy UE4CAM.transform.controller		-- store old controller for catch()with undo on (if not forceUpdate then disableSceneRedraw();	-- not using redraw context for max4 compatibility-- disableSceneRedraw is problematic as not all scripted controllers are updated!try (p = Point()			-- create temp point object-- copy global transform of source object into temp objectfor i = animationRange.start to animationRange.end do (if forceUpdate then sliderTime = i	-- set slider time to force a global update of all animation dataat time i (with animate on p.transform = UE4CAM.transform))-- kill old transform controller and assign new, clean oneUE4CAM.transform.controller = transform_script()	UE4CAM.transform.controller = prs()	if not (isGroupMember UE4CAM) then UE4CAM.parent = undefined	-- unlink if not in a group-- copy temp object animation back into source objectfor i = animationRange.start to animationRange.end do (at time i (with animate on	UE4CAM.transform = p.transform))delete p			-- delete temp point objp = undefinedif not forceUpdate then enableSceneRedraw())--trycatch(format "coder zsz:QQ  : Fatal error - exiting\n"if p!=undefined then delete pUE4CAM.transform.controller = old_prs_ctrlif not forceUpdate then enableSceneRedraw())-- catch				)--with undo--塌陷结束-----导出fbx文件------ 使用一个.net文件windows窗口—导出fbx文件browse_dialog = dotNetObject "System.Windows.Forms.SaveFileDialog" --建立一个打开文件对话框DotNetFile = DotNetClass "System.IO.File"--创建.net文件browse_dialog.title = "保存文件" --设置标题browse_dialog.Filter = "fbx Files (*.fbx)|*.fbx|All Files (*.*)|*.*" --确认这个文件过滤browse_dialog.fileName = trimright maxfilename ".max"browse_dialog.FilterIndex = 2 --设置文件过滤下拉菜单长度result = browse_dialog.showDialog() --显示对话框,得到的结果进变量if (result.Equals result.OK) then(if ( not (DotNetFile.Exists browse_dialog.FileName)) then(select UE4CAMif selection.count !=0 then(	AA=browse_dialog.fileName+".fbx"exportFile AA  #noPrompt selectedOnly:true using:fbxexpBB=browse_dialog.fileName+".TXT"format_txt BB "renderWidth=" "renderHight=")))			--删除相机 	delete UE4CAMfree(filepath)					))rollout exportFBX "导出fbx模:半自动" width:200 height:100(HyperLink explain "在打开的max文件中使用" pos:[25,0] width:200 height:15 color:(color 255 155 0)	 GroupBox grp1 "要导出的角色根骨骼" pos:[5,15] width:179 height:80pickbutton PickRoot "拾取根骨骼" pos:[20,30] width:150 height:20button	 bt_OutFBX	"输出fbx模型" pos:[20,55] width:150 height:30 enabled:trueon PickRoot picked obj do( PickRoot.text = obj.name)		on bt_OutFBX pressed do( ChrBone=getnodebyname PickRoot.textselect ChrBone--根据根选择此层级所有物体if selection.count !=0 then(fn getTheChildren obj:selection[1] includeParent:false = (execute ("$'" + (obj.name)+"'/"+(if includeParent then "" else "*/")+".../*"))select (getTheChildren includeParent:true)select (getTheChildren())getTheChildren includeParent:true as arraygetTheChildren() as array)mysel=selection as array -----对齐帧处理-----debb = 10000finn=-10000 for a in selection do(if  (classof a == BoneGeometry) then(if (numKeys a.position.controller > 0)then(sortKeys a.controllernum_keys = numkeys a.position.controllerstarttime = getkeytime a.position.controller 1endtime = starttimefor O = 1 to num_keys do (key_time = getkeytime a.position.controller Oif key_time > endtime thenendtime = key_time)if starttime < debb then debb = starttimeif endtime > finn then finn = endtime))if (classof a == Biped_Object) then(if (numKeys a.transform.controller > 0)then(sortKeys a.controllernum_keys = numkeys a.transform.controllerstarttime = getkeytime a.transform.controller 1endtime = starttimefor O = 1 to num_keys do (key_time = getkeytime a.transform.controller Oif key_time > endtime thenendtime = key_time)if starttime < debb then debb = starttimeif endtime > finn then finn = endtime)))animationRange = interval debb finn	-----end对齐帧处理-----------------查找蒙皮中具有bip字样的模型并一起选择---------------if selection.count !=0 then(actionMan.executeAction 0 "283"  -- Tools: Unfreeze Allmax unfreeze all	  allTheSkin = for obj in objects where (classof obj==PolyMeshObject)  collect objfor f in allTheSkin do(skinMods = getclassinstances Skin target:f max modify modemodPanel.setCurrentObject f.modifiers[#Skin]skinOps.getnumberbones skinMods[1]bonename =skinOps.getBoneName skinMods[1] 1 0bonename =skinOps.getBoneName skinMods[1] 2 0	if findString bonename "Bip" ==1 then (join mysel f)else(deselect f)selectmore mysel))-----使用一个.net文件windows窗口—导出fbx文件------browse_dialog = dotNetObject "System.Windows.Forms.SaveFileDialog" --建立一个打开文件对话框DotNetFile = DotNetClass "System.IO.File"--创建.net文件browse_dialog.title = "保存文件" --设置标题browse_dialog.Filter = "fbx Files (*.fbx)|*.fbx|All Files (*.*)|*.*" --确认这个文件过滤browse_dialog.fileName = trimright maxfilename ".max"browse_dialog.FilterIndex = 2 --设置文件过滤下拉菜单长度result = browse_dialog.showDialog() --显示对话框,得到的结果进变量if (result.Equals result.OK) then(if ( not (DotNetFile.Exists browse_dialog.FileName)) then(if selection.count !=0 then(	AA=browse_dialog.fileName+"."+"model"+".fbx"exportFile AA #noPrompt selectedOnly:true using:fbxexp)))))rollout exportFBX_ue4cam_v1 "批出fbx模&UEcam_V1:自动" width:200 height:120(
HyperLink explain "指定目录即可,不需要打开文件" pos:[25,0] width:200 height:15  color:(color 255 155 0)
edittext selfile "" pos:[10,20] width:140 height:19 text:"...请选择目录"
button btn_browse "..."  pos:[160,20] width:30 height:19 
checkBox ignore "忽略backup文件" pos:[60,40] width:100 height:19
-- radioButtons rdo1 "" pos:[30,40] width:168 height:16 labels:#("输出相机", "输出模型") default:1 columns:2	 
button	 bt_create	"批量输出fbx" pos:[20,60] width:150 height:32 enabled:true-------逐行写入文本------------
fn format_txt filepath filetext1 filetext2=
(	if doesFileExist filepath == truethen(fin = openfile filepath mode:"r+"seek fin #eoftxt = filetext1+RenderWidth as string+"\n"+filetext2+RenderHeight as string+"\n"format txt to:finclose fin)else(newfile = createFile filepath writeBOM:trueclose newfileformat_txt filepath filetext1 filetext2)
)  -- 逐行写入文本	 on btn_browse pressed do( 		global DIR = getSavePath caption:"选择max目录"if (DIR != undefined) then ( selfile.text = dir ))		on bt_create pressed do( files =DIR+"\*.max"OldFiles=getfiles files	GetFile= getFiles files	 if (ignore.checked) then(---排除掉backup文件--UndoFiles=getfiles (DIR+"\*backup*.max")for j = 1 to UndoFiles.count do	while (index = (findItem GetFile UndoFiles[j])) != 0 do (deleteItem GetFile index)---排除掉backup文件end--	 )	Maxfiles=GetFilefor f in Maxfiles do (--打开max文件--- loadMaxfile f missingExtFilesAction:#logmsg---切割文本内容mydir=trimRight f ".max"global filename=trimLeft mydir DIRglobal filepath=(DIR+"/"+filename+".txt") as string		 --------start 输出model.fbx-------	---------只输出bip模型--------------选择所有bip物体select $'*bip*' mysel= selection as array--根据bip选择根for f in mysel do(fn getRoot node = if isvalidnode node do (while node.parent != undefined do node = node.parent; node)aaa=getRoot fselect aaa)--根据根选择此层级所有物体if (selection.count !=0) then(fn getTheChildren obj:selection[1] includeParent:false = (execute ("$'" + (obj.name)+"'/"+(if includeParent then "" else "*/")+".../*"))select (getTheChildren includeParent:true)select (getTheChildren())getTheChildren includeParent:true as arraygetTheChildren() as array)if (selection.count !=0) do(-----对齐帧处理-----debb = 10000finn=-10000 for a in selection do(if  (classof a == BoneGeometry) then(if (numKeys a.position.controller > 0)then(sortKeys a.controllernum_keys = numkeys a.position.controllerstarttime = getkeytime a.position.controller 1endtime = starttimefor O = 1 to num_keys do (key_time = getkeytime a.position.controller Oif key_time > endtime thenendtime = key_time)if starttime < debb then debb = starttimeif endtime > finn then finn = endtime))else if (classof a == Biped_Object) then(if (numKeys a.transform.controller > 0)then(sortKeys a.controllernum_keys = numkeys a.transform.controllerstarttime = getkeytime a.transform.controller 1endtime = starttimefor O = 1 to num_keys do (key_time = getkeytime a.transform.controller Oif key_time > endtime thenendtime = key_time)if starttime < debb then debb = starttimeif endtime > finn then finn = endtime)))animationRange = interval debb finn	-----end对齐帧处理-----)------------查找蒙皮中具有bip字样的模型并一起选择---------------if selection.count !=0 then(actionMan.executeAction 0 "283"  -- Tools: Unfreeze Allmax unfreeze all	  allTheSkin = for obj in objects where (classof obj==PolyMeshObject)  collect objfor f in allTheSkin do(skinMods = getclassinstances Skin target:f max modify modemodPanel.setCurrentObject f.modifiers[#Skin]skinOps.getnumberbones skinMods[1]bonename =skinOps.getBoneName skinMods[1] 1 0bonename =skinOps.getBoneName skinMods[1] 2 0	if findString bonename "Bip" ==1 then (join mysel f)else(deselect f)selectmore mysel))---------只输出bip模型------------if selection.count !=0 then(AA=Dir+"/"+filename+"."+"model"+".fbx"	exportFile  AA #noPrompt selectedOnly:true using:fbxexpdeselect $	)----end 输出model.fbx-----选择相机(包括隐藏的)跳过目标物体camsARr = for o in cameras where classof o != targetobject collect oselect camsARr  filter:FilterCameras showHidden:trueMaxCamSelSet = selection as array	------start输出cam.fbx------for i in MaxCamSelSet do(MAXCAM= iFreecamera fov:45 targetDistance:314.512 nearclip:1 farclip:1000 nearrange:0 farrange:1000 mpassEnabled:off mpassRenderPerPass:off pos:[0,0,0] isSelected:onhide $$.name =FileName+"."+i.name --设置相机名称UE4CAM =$UE4CAM.Position=MAXCAM.positionUE4CAM.FOV=MAXCAM.FOV--位置约束UE4CAM.Position.controller= Position_Constraint ()A = UE4CAM.Position.controllerA.appendTarget MAXCAM 100--方向约束UE4CAM.rotation.controller= Orientation_Constraint ()B = UE4CAM.rotation.controllerB.appendTarget MAXCAM 100--开始塌陷local forceUpdate = keyboard.shiftPressed -- if SHIFT is pressed when the macro is called, a viewport redraw is enforced for each timestep to ensure a full update of all controllersif forceUpdate then format "MB Collapse: Enforcing full viewport update. This might be slow but will ensure proper updating of all controllers\n"local p = undefinedlocal old_prs_ctrl = copy UE4CAM.transform.controller		-- store old controller for catch()with undo on (if not forceUpdate then disableSceneRedraw();	-- not using redraw context for max4 compatibility-- disableSceneRedraw is problematic as not all scripted controllers are updated!try (p = Point()			-- create temp point object-- copy global transform of source object into temp objectfor i = animationRange.start to animationRange.end do (if forceUpdate then sliderTime = i	-- set slider time to force a global update of all animation dataat time i (with animate on p.transform = UE4CAM.transform))-- kill old transform controller and assign new, clean oneUE4CAM.transform.controller = transform_script()	UE4CAM.transform.controller = prs()	if not (isGroupMember UE4CAM) then UE4CAM.parent = undefined	-- unlink if not in a group-- copy temp object animation back into source objectfor i = animationRange.start to animationRange.end do (at time i (with animate on	UE4CAM.transform = p.transform))delete p			-- delete temp point objp = undefinedif not forceUpdate then enableSceneRedraw())--trycatch(format "coder zsz:QQ  : Fatal error - exiting\n"if p!=undefined then delete pUE4CAM.transform.controller = old_prs_ctrlif not forceUpdate then enableSceneRedraw())-- catch				)--with undo--塌陷结束----对齐相机的关键帧到动画范围---debb = 10000finn=-10000 for a in selection do(if (numKeys a.position.controller > 0)then(sortKeys a.controllernum_keys = numkeys a.position.controllerstarttime = getkeytime a.position.controller 1endtime = starttimefor O = 1 to num_keys do (key_time = getkeytime a.position.controller Oif key_time > endtime thenendtime = key_time)if starttime < debb then debb = starttimeif endtime > finn then finn = endtime)else(starttime = 1endtime = 100				if starttime < debb then debb = starttimeif endtime > finn then finn = endtime				))animationRange = interval debb finn	----对齐相机的关键帧到动画范围end---	--------导出fbx文件-------CAM=MAXCAM.nameBB=DIR+"/"+filename+"."+CAM+".fbx"exportFile  BB #noPrompt selectedOnly:true using:fbxexp	)	------end输出cam.fbx-------- 		------输出cam.txt------if MaxCamSelSet.count !=0 then(		format_txt filepath "renderWidth=" "renderHight=")
-- 		------end输出cam.txt------	------重置max场景-------		resetMaxFile #noPrompt)----删除导入机制生产的备份文件------排除掉新产生的backup文件--NewFiles=getfiles (DIR+"\*.max")for j = 1 to OldFiles.count do	while (index = (findItem NewFiles OldFiles[j])) != 0 do (deleteItem NewFiles index)WillDelFiles=NewFiles---排除掉新产生的backup文件end--for a in WillDelFiles do(			deletefile a) ----删除导入机制生产的备份文件-------释放全局变量DIR	free(DIR)))rollout exportFBX_ue4cam_v2 "批出fb模&UEcam_V2:模式自选" width:200 height:100(
HyperLink explain "指定目录即可,不需要打开文件" pos:[25,0] width:200 height:15 color:(color 255 155 0)
edittext selfile "" pos:[10,15] width:140 height:19 text:"...请选择目录"
button btn_browse "..."  pos:[160,15] width:30 height:19
checkBox ignore "忽略backup文件" pos:[60,35] width:100 height:19
label explain1 "输出相机是打开模式,输出模型是导入模式" pos:[0,64] width:200 height:15 
radioButtons rdo1 "" pos:[30,50] width:168 height:16 labels:#("输出相机", "输出模型") default:1 columns:2	 
button	 bt_create	"批量输出fbx" pos:[20,80] width:150 height:32 enabled:true---函数部分--fn LoadOrMergeFile f = (if rdo1.state ==1 then (loadMaxfile f missingExtFilesAction:#logmsg)if rdo1.state ==2 then (mergeMaxfile f ))  ---------逐行写入文本------------
fn format_txt FilePath filetext1 filetext2=
(	if doesFileExist FilePath == truethen(fin = openfile FilePath mode:"r+"seek fin #eoftxt = filetext1+RenderWidth as string+"\n"+filetext2+RenderHeight as string+"\n"format txt to:finclose fin)else(newfile = createFile FilePath writeBOM:trueclose newfileformat_txt FilePath filetext1 filetext2)
)
-- 逐行写入文本---///end函数部分--on btn_browse pressed do( global DIR = getSavePath caption:"选择max目录"if (DIR != undefined) do ( selfile.text = DIR )	)	on bt_create pressed do( files =DIR+"/"+"*.max"OldFiles=getfiles files	GetFile= getFiles filesif (ignore.checked)then(		---排除掉backup文件--WillDelFiles=getfiles (DIR+"\*backup*.max")for j = 1 to WillDelFiles.count do	while (index = (findItem GetFile WillDelFiles[j])) != 0 do (deleteItem GetFile index)---排除掉backup文件end-- )Maxfiles=GetFile for f in Maxfiles do (---切割文本内容mydir=trimRight f ".max"global FileName=trimLeft mydir DIRglobal FilePath=(DIR+"/"+FileName+".txt") as string	--导入max文件--- LoadOrMergeFile f	 ----输出model.fbx ---		 -- 		ExportModel,见 rdo1的写在那里面if rdo1.state ==1 then (---选择相机(包括隐藏的)跳过目标物体camsArr = for o in cameras where classof o != targetobject collect oselect camsArr  filter:FilterCameras showHidden:trueMaxCamSelSet = selection as array	------start输出cam.fbx------for i in MaxCamSelSet do(MAXCAM= iFreecamera fov:45 targetDistance:314.512 nearclip:1 farclip:1000 nearrange:0 farrange:1000 mpassEnabled:off mpassRenderPerPass:off pos:[0,0,0] isSelected:onhide $$.name =FileName+"."+i.name --设置相机名称UE4CAM =$UE4CAM.Position=MAXCAM.positionUE4CAM.FOV=MAXCAM.FOV--位置约束UE4CAM.Position.controller= Position_Constraint ()A = UE4CAM.Position.controllerA.appendTarget MAXCAM 100--方向约束UE4CAM.rotation.controller= Orientation_Constraint ()B = UE4CAM.rotation.controllerB.appendTarget MAXCAM 100--开始塌陷local forceUpdate = keyboard.shiftPressed -- if SHIFT is pressed when the macro is called, a viewport redraw is enforced for each timestep to ensure a full update of all controllersif forceUpdate then format "MB Collapse: Enforcing full viewport update. This might be slow but will ensure proper updating of all controllers\n"local p = undefinedlocal old_prs_ctrl = copy UE4CAM.transform.controller		-- store old controller for catch()with undo on (if not forceUpdate then disableSceneRedraw();	-- not using redraw context for max4 compatibility-- disableSceneRedraw is problematic as not all scripted controllers are updated!try (p = Point()								-- create temp point object-- copy global transform of source object into temp objectfor i = animationRange.start to animationRange.end do (if forceUpdate then sliderTime = i	-- set slider time to force a global update of all animation dataat time i (with animate on p.transform = UE4CAM.transform))-- kill old transform controller and assign new, clean oneUE4CAM.transform.controller = transform_script()	UE4CAM.transform.controller = prs()	if not (isGroupMember UE4CAM) then UE4CAM.parent = undefined	-- unlink if not in a group-- copy temp object animation back into source objectfor i = animationRange.start to animationRange.end do (at time i (with animate on	UE4CAM.transform = p.transform))delete p			-- delete temp point objp = undefinedif not forceUpdate then enableSceneRedraw())--trycatch(format "coder zsz:QQ  : Fatal error - exiting\n"if p!=undefined then delete pUE4CAM.transform.controller = old_prs_ctrlif not forceUpdate then enableSceneRedraw())-- catch				)--with undo--塌陷结束----对齐相机的关键帧到动画范围---debb = 10000finn=-10000 for a in selection do(if (numKeys a.position.controller > 0)then(sortKeys a.controllernum_keys = numkeys a.position.controllerstarttime = getkeytime a.position.controller 1endtime = starttimefor O = 1 to num_keys do (key_time = getkeytime a.position.controller Oif key_time > endtime thenendtime = key_time)if starttime < debb then debb = starttimeif endtime > finn then finn = endtime)else(starttime = 1endtime = 100				if starttime < debb then debb = starttimeif endtime > finn then finn = endtime				))animationRange = interval debb finn	----对齐相机的关键帧到动画范围end---	--------导出fbx文件-------CAM=MAXCAM.nameFBXFileName=DIR+"/"+FileName+"."+CAM+".fbx"exportFile FBXFileName #noPrompt selectedOnly:true using:fbxexpp	)	------end输出cam.fbx------------输出cam.txt------if MaxCamSelSet.count !=0 then(				format_txt FilePath "renderWidth=" "renderHight=")------end输出cam.txt------)if rdo1.state ==2 then (---------只输出bip模型--------------选择所有bip物体select $'*bip*' mysel= selection as array--根据bip选择根for f in mysel do(fn getRoot node = if isvalidnode node do (while node.parent != undefined do node = node.parent; node)aaa=getRoot fselect aaa)--根据根选择此层级所有物体if selection.count !=0 then(fn getTheChildren obj:selection[1] includeParent:false = (execute ("$'" + (obj.name)+"'/"+(if includeParent then "" else "*/")+".../*"))select (getTheChildren includeParent:true)select (getTheChildren())getTheChildren includeParent:true as arraygetTheChildren() as array)-----对齐帧处理-----debb = 10000finn=-10000 for a in selection do(if  (classof a == BoneGeometry) then(if (numKeys a.position.controller > 0)then(sortKeys a.controllernum_keys = numkeys a.position.controllerstarttime = getkeytime a.position.controller 1endtime = starttimefor O = 1 to num_keys do (key_time = getkeytime a.position.controller Oif key_time > endtime thenendtime = key_time)if starttime < debb then debb = starttimeif endtime > finn then finn = endtime))if (classof a == Biped_Object) then(if (numKeys a.transform.controller > 0)then(sortKeys a.controllernum_keys = numkeys a.transform.controllerstarttime = getkeytime a.transform.controller 1endtime = starttimefor O = 1 to num_keys do (key_time = getkeytime a.transform.controller Oif key_time > endtime thenendtime = key_time)if starttime < debb then debb = starttimeif endtime > finn then finn = endtime)))animationRange = interval debb finn	-----end对齐帧处理-----------------查找蒙皮中具有bip字样的模型并一起选择---------------if selection.count !=0 then(		  actionMan.executeAction 0 "283"  -- Tools: Unfreeze Allmax unfreeze allallTheSkin = for obj in objects where (classof obj==PolyMeshObject)  collect objfor f in allTheSkin do(skinMods = getclassinstances Skin target:f max modify modemodPanel.setCurrentObject f.modifiers[#Skin]skinOps.getnumberbones skinMods[1]bonename =skinOps.getBoneName skinMods[1] 1 0bonename =skinOps.getBoneName skinMods[1] 2 0	if findString bonename "Bip" ==1 then (join mysel f)else(deselect f)selectmore mysel))---------只输出bip模型----------------start 输出model.fbx---	if selection.count !=0 then(		AA=Dir+"/"+FileName+"."+"model"+".fbx"	exportFile  AA #noPrompt selectedOnly:true using:fbxexp)----end 输出model.fbx---) ------重置max场景-------resetMaxFile #noPrompt	)----删除导入机制生产的备份文件------排除掉新产生的backup文件--NewFiles=getfiles (DIR+"\*.max")for j = 1 to OldFiles.count do	while (index = (findItem NewFiles OldFiles[j])) != 0 do (deleteItem NewFiles index)WillDelFiles=NewFiles---排除掉新产生的backup文件end--for a in WillDelFiles do(			deletefile a) ----删除导入机制生产的备份文件-------释放全局变量DIR	free(DIR)))-------------------------------------------------------------	
globalrollout = newrolloutfloater "导ue4模型和相机工具集" 200 535
addRollout export_UE4Cam_v2 globalrollout
addRollout exportFBX globalrollout
addRollout exportFBX_ue4cam_v1 globalrollout
addRollout exportFBX_ue4cam_v2 globalrollout 
-------------------------------------------------------------------------

------分部件代码展示:-----

 rollout export_UE4Cam_v2 "导出UE4Cam_v2:半自动" width:200 height:120(HyperLink  explain "在打开的max文件中使用" pos:[25,12] width:200 height:15 color:(color 255 155 0)	 GroupBox grp1 "要导出的相机名" pos:[5,28] width:179 height:40pickbutton OutCam "拾取相机" pos:[20,40] width:150 height:20GroupBox grp2 "要导出的fbx文件名" pos:[5,70] width:179 height:50button	 bt_create	"Create UE4 Camera" pos:[20,85] width:150 height:32 enabled:true-----逐行写入文本------------
fn format_txt FilePath filetext1 filetext2=
(	if doesFileExist FilePath == truethen(fin = openfile FilePath mode:"r+"seek fin #eoftxt = filetext1+RenderWidth as string+"\n"+filetext2+RenderHeight as string+"\n"format txt to:finclose fin)else(newfile = createFile FilePath writeBOM:trueclose newfileformat_txt FilePath filetext1 filetext2)
)
-----end逐行写入文本-----------------on OutCam picked obj do(OutCam.text = obj.name)on bt_create pressed do(		Freecamera fov:45 targetDistance:314.512 nearclip:1 farclip:1000 nearrange:0 farrange:1000 mpassEnabled:off mpassRenderPerPass:off pos:[0,0,0] isSelected:onmycam = OutCam.text$.name = mycamUE4CAM =$MAXCAM =getnodebyname mycamUE4CAM.Position=MAXCAM.positionUE4CAM.FOV=MAXCAM.FOV--位置约束UE4CAM.Position.controller= Position_Constraint ()A = UE4CAM.Position.controllerA.appendTarget MAXCAM 100--方向约束UE4CAM.rotation.controller= Orientation_Constraint ()B = UE4CAM.rotation.controllerB.appendTarget MAXCAM 100--开始塌陷local forceUpdate = keyboard.shiftPressed -- if SHIFT is pressed when the macro is called, a viewport redraw is enforced for each timestep to ensure a full update of all controllersif forceUpdate then format "MB Collapse: Enforcing full viewport update. This might be slow but will ensure proper updating of all controllers\n"local p = undefinedlocal old_prs_ctrl = copy UE4CAM.transform.controller		-- store old controller for catch()with undo on (if not forceUpdate then disableSceneRedraw();	-- not using redraw context for max4 compatibility-- disableSceneRedraw is problematic as not all scripted controllers are updated!try (p = Point()			-- create temp point object-- copy global transform of source object into temp objectfor i = animationRange.start to animationRange.end do (if forceUpdate then sliderTime = i	-- set slider time to force a global update of all animation dataat time i (with animate on p.transform = UE4CAM.transform))-- kill old transform controller and assign new, clean oneUE4CAM.transform.controller = transform_script()	UE4CAM.transform.controller = prs()	if not (isGroupMember UE4CAM) then UE4CAM.parent = undefined	-- unlink if not in a group-- copy temp object animation back into source objectfor i = animationRange.start to animationRange.end do (at time i (with animate on	UE4CAM.transform = p.transform))delete p			-- delete temp point objp = undefinedif not forceUpdate then enableSceneRedraw())--trycatch(format "coder zsz:QQ  : Fatal error - exiting\n"if p!=undefined then delete pUE4CAM.transform.controller = old_prs_ctrlif not forceUpdate then enableSceneRedraw())-- catch				)--with undo--塌陷结束-----导出fbx文件------ 使用一个.net文件windows窗口—导出fbx文件browse_dialog = dotNetObject "System.Windows.Forms.SaveFileDialog" --建立一个打开文件对话框DotNetFile = DotNetClass "System.IO.File"--创建.net文件browse_dialog.title = "保存文件" --设置标题browse_dialog.Filter = "fbx Files (*.fbx)|*.fbx|All Files (*.*)|*.*" --确认这个文件过滤browse_dialog.fileName = trimright maxfilename ".max"browse_dialog.FilterIndex = 2 --设置文件过滤下拉菜单长度result = browse_dialog.showDialog() --显示对话框,得到的结果进变量if (result.Equals result.OK) then(if ( not (DotNetFile.Exists browse_dialog.FileName)) then(select UE4CAMif selection.count !=0 then(	AA=browse_dialog.fileName+".fbx"exportFile AA  #noPrompt selectedOnly:true using:fbxexpBB=browse_dialog.fileName+".TXT"format_txt BB "renderWidth=" "renderHight=")))			--删除相机 	delete UE4CAMfree(filepath)					))

rollout exportFBX "导出fbx模:半自动" width:200 height:100(HyperLink explain "在打开的max文件中使用" pos:[25,0] width:200 height:15 color:(color 255 155 0)	 GroupBox grp1 "要导出的角色根骨骼" pos:[5,15] width:179 height:80pickbutton PickRoot "拾取根骨骼" pos:[20,30] width:150 height:20button	 bt_OutFBX	"输出fbx模型" pos:[20,55] width:150 height:30 enabled:trueon PickRoot picked obj do( PickRoot.text = obj.name)		on bt_OutFBX pressed do( ChrBone=getnodebyname PickRoot.textselect ChrBone--根据根选择此层级所有物体if selection.count !=0 then(fn getTheChildren obj:selection[1] includeParent:false = (execute ("$'" + (obj.name)+"'/"+(if includeParent then "" else "*/")+".../*"))select (getTheChildren includeParent:true)select (getTheChildren())getTheChildren includeParent:true as arraygetTheChildren() as array)mysel=selection as array -----对齐帧处理-----debb = 10000finn=-10000 for a in selection do(if  (classof a == BoneGeometry) then(if (numKeys a.position.controller > 0)then(sortKeys a.controllernum_keys = numkeys a.position.controllerstarttime = getkeytime a.position.controller 1endtime = starttimefor O = 1 to num_keys do (key_time = getkeytime a.position.controller Oif key_time > endtime thenendtime = key_time)if starttime < debb then debb = starttimeif endtime > finn then finn = endtime))if (classof a == Biped_Object) then(if (numKeys a.transform.controller > 0)then(sortKeys a.controllernum_keys = numkeys a.transform.controllerstarttime = getkeytime a.transform.controller 1endtime = starttimefor O = 1 to num_keys do (key_time = getkeytime a.transform.controller Oif key_time > endtime thenendtime = key_time)if starttime < debb then debb = starttimeif endtime > finn then finn = endtime)))animationRange = interval debb finn	-----end对齐帧处理-----------------查找蒙皮中具有bip字样的模型并一起选择---------------if selection.count !=0 then(actionMan.executeAction 0 "283"  -- Tools: Unfreeze Allmax unfreeze all	  allTheSkin = for obj in objects where (classof obj==PolyMeshObject)  collect objfor f in allTheSkin do(skinMods = getclassinstances Skin target:f max modify modemodPanel.setCurrentObject f.modifiers[#Skin]skinOps.getnumberbones skinMods[1]bonename =skinOps.getBoneName skinMods[1] 1 0bonename =skinOps.getBoneName skinMods[1] 2 0	if findString bonename "Bip" ==1 then (join mysel f)else(deselect f)selectmore mysel))-----使用一个.net文件windows窗口—导出fbx文件------browse_dialog = dotNetObject "System.Windows.Forms.SaveFileDialog" --建立一个打开文件对话框DotNetFile = DotNetClass "System.IO.File"--创建.net文件browse_dialog.title = "保存文件" --设置标题browse_dialog.Filter = "fbx Files (*.fbx)|*.fbx|All Files (*.*)|*.*" --确认这个文件过滤browse_dialog.fileName = trimright maxfilename ".max"browse_dialog.FilterIndex = 2 --设置文件过滤下拉菜单长度result = browse_dialog.showDialog() --显示对话框,得到的结果进变量if (result.Equals result.OK) then(if ( not (DotNetFile.Exists browse_dialog.FileName)) then(if selection.count !=0 then(	AA=browse_dialog.fileName+"."+"model"+".fbx"exportFile AA #noPrompt selectedOnly:true using:fbxexp)))))

 rollout exportFBX_ue4cam_v1 "批出fbx模&UEcam_V1:自动" width:200 height:120(
HyperLink explain "指定目录即可,不需要打开文件" pos:[25,0] width:200 height:15  color:(color 255 155 0)
edittext selfile "" pos:[10,20] width:140 height:19 text:"...请选择目录"
button btn_browse "..."  pos:[160,20] width:30 height:19 
checkBox ignore "忽略backup文件" pos:[60,40] width:100 height:19
-- radioButtons rdo1 "" pos:[30,40] width:168 height:16 labels:#("输出相机", "输出模型") default:1 columns:2	 
button	 bt_create	"批量输出fbx" pos:[20,60] width:150 height:32 enabled:true-------逐行写入文本------------
fn format_txt filepath filetext1 filetext2=
(	if doesFileExist filepath == truethen(fin = openfile filepath mode:"r+"seek fin #eoftxt = filetext1+RenderWidth as string+"\n"+filetext2+RenderHeight as string+"\n"format txt to:finclose fin)else(newfile = createFile filepath writeBOM:trueclose newfileformat_txt filepath filetext1 filetext2)
)  -- 逐行写入文本	 on btn_browse pressed do( 		global DIR = getSavePath caption:"选择max目录"if (DIR != undefined) then ( selfile.text = dir ))		on bt_create pressed do( files =DIR+"\*.max"OldFiles=getfiles files	GetFile= getFiles files	 if (ignore.checked) then(---排除掉backup文件--UndoFiles=getfiles (DIR+"\*backup*.max")for j = 1 to UndoFiles.count do	while (index = (findItem GetFile UndoFiles[j])) != 0 do (deleteItem GetFile index)---排除掉backup文件end--	 )	Maxfiles=GetFilefor f in Maxfiles do (--打开max文件--- loadMaxfile f missingExtFilesAction:#logmsg---切割文本内容mydir=trimRight f ".max"global filename=trimLeft mydir DIRglobal filepath=(DIR+"/"+filename+".txt") as string		 --------start 输出model.fbx-------	---------只输出bip模型--------------选择所有bip物体select $'*bip*' mysel= selection as array--根据bip选择根for f in mysel do(fn getRoot node = if isvalidnode node do (while node.parent != undefined do node = node.parent; node)aaa=getRoot fselect aaa)--根据根选择此层级所有物体if (selection.count !=0) then(fn getTheChildren obj:selection[1] includeParent:false = (execute ("$'" + (obj.name)+"'/"+(if includeParent then "" else "*/")+".../*"))select (getTheChildren includeParent:true)select (getTheChildren())getTheChildren includeParent:true as arraygetTheChildren() as array)if (selection.count !=0) do(-----对齐帧处理-----debb = 10000finn=-10000 for a in selection do(if  (classof a == BoneGeometry) then(if (numKeys a.position.controller > 0)then(sortKeys a.controllernum_keys = numkeys a.position.controllerstarttime = getkeytime a.position.controller 1endtime = starttimefor O = 1 to num_keys do (key_time = getkeytime a.position.controller Oif key_time > endtime thenendtime = key_time)if starttime < debb then debb = starttimeif endtime > finn then finn = endtime))else if (classof a == Biped_Object) then(if (numKeys a.transform.controller > 0)then(sortKeys a.controllernum_keys = numkeys a.transform.controllerstarttime = getkeytime a.transform.controller 1endtime = starttimefor O = 1 to num_keys do (key_time = getkeytime a.transform.controller Oif key_time > endtime thenendtime = key_time)if starttime < debb then debb = starttimeif endtime > finn then finn = endtime)))animationRange = interval debb finn	-----end对齐帧处理-----)------------查找蒙皮中具有bip字样的模型并一起选择---------------if selection.count !=0 then(actionMan.executeAction 0 "283"  -- Tools: Unfreeze Allmax unfreeze all	  allTheSkin = for obj in objects where (classof obj==PolyMeshObject)  collect objfor f in allTheSkin do(skinMods = getclassinstances Skin target:f max modify modemodPanel.setCurrentObject f.modifiers[#Skin]skinOps.getnumberbones skinMods[1]bonename =skinOps.getBoneName skinMods[1] 1 0bonename =skinOps.getBoneName skinMods[1] 2 0	if findString bonename "Bip" ==1 then (join mysel f)else(deselect f)selectmore mysel))---------只输出bip模型------------if selection.count !=0 then(AA=Dir+"/"+filename+"."+"model"+".fbx"	exportFile  AA #noPrompt selectedOnly:true using:fbxexpdeselect $	)----end 输出model.fbx-----选择相机(包括隐藏的)跳过目标物体camsARr = for o in cameras where classof o != targetobject collect oselect camsARr  filter:FilterCameras showHidden:trueMaxCamSelSet = selection as array	------start输出cam.fbx------for i in MaxCamSelSet do(MAXCAM= iFreecamera fov:45 targetDistance:314.512 nearclip:1 farclip:1000 nearrange:0 farrange:1000 mpassEnabled:off mpassRenderPerPass:off pos:[0,0,0] isSelected:onhide $$.name =FileName+"."+i.name --设置相机名称UE4CAM =$UE4CAM.Position=MAXCAM.positionUE4CAM.FOV=MAXCAM.FOV--位置约束UE4CAM.Position.controller= Position_Constraint ()A = UE4CAM.Position.controllerA.appendTarget MAXCAM 100--方向约束UE4CAM.rotation.controller= Orientation_Constraint ()B = UE4CAM.rotation.controllerB.appendTarget MAXCAM 100--开始塌陷local forceUpdate = keyboard.shiftPressed -- if SHIFT is pressed when the macro is called, a viewport redraw is enforced for each timestep to ensure a full update of all controllersif forceUpdate then format "MB Collapse: Enforcing full viewport update. This might be slow but will ensure proper updating of all controllers\n"local p = undefinedlocal old_prs_ctrl = copy UE4CAM.transform.controller		-- store old controller for catch()with undo on (if not forceUpdate then disableSceneRedraw();	-- not using redraw context for max4 compatibility-- disableSceneRedraw is problematic as not all scripted controllers are updated!try (p = Point()			-- create temp point object-- copy global transform of source object into temp objectfor i = animationRange.start to animationRange.end do (if forceUpdate then sliderTime = i	-- set slider time to force a global update of all animation dataat time i (with animate on p.transform = UE4CAM.transform))-- kill old transform controller and assign new, clean oneUE4CAM.transform.controller = transform_script()	UE4CAM.transform.controller = prs()	if not (isGroupMember UE4CAM) then UE4CAM.parent = undefined	-- unlink if not in a group-- copy temp object animation back into source objectfor i = animationRange.start to animationRange.end do (at time i (with animate on	UE4CAM.transform = p.transform))delete p			-- delete temp point objp = undefinedif not forceUpdate then enableSceneRedraw())--trycatch(format "coder zsz:QQ  : Fatal error - exiting\n"if p!=undefined then delete pUE4CAM.transform.controller = old_prs_ctrlif not forceUpdate then enableSceneRedraw())-- catch				)--with undo--塌陷结束----对齐相机的关键帧到动画范围---debb = 10000finn=-10000 for a in selection do(if (numKeys a.position.controller > 0)then(sortKeys a.controllernum_keys = numkeys a.position.controllerstarttime = getkeytime a.position.controller 1endtime = starttimefor O = 1 to num_keys do (key_time = getkeytime a.position.controller Oif key_time > endtime thenendtime = key_time)if starttime < debb then debb = starttimeif endtime > finn then finn = endtime)else(starttime = 1endtime = 100				if starttime < debb then debb = starttimeif endtime > finn then finn = endtime				))animationRange = interval debb finn	----对齐相机的关键帧到动画范围end---	--------导出fbx文件-------CAM=MAXCAM.nameBB=DIR+"/"+filename+"."+CAM+".fbx"exportFile  BB #noPrompt selectedOnly:true using:fbxexp	)	------end输出cam.fbx-------- 		------输出cam.txt------if MaxCamSelSet.count !=0 then(		format_txt filepath "renderWidth=" "renderHight=")
-- 		------end输出cam.txt------	------重置max场景-------		resetMaxFile #noPrompt)----删除导入机制生产的备份文件------排除掉新产生的backup文件--NewFiles=getfiles (DIR+"\*.max")for j = 1 to OldFiles.count do	while (index = (findItem NewFiles OldFiles[j])) != 0 do (deleteItem NewFiles index)WillDelFiles=NewFiles---排除掉新产生的backup文件end--for a in WillDelFiles do(			deletefile a) ----删除导入机制生产的备份文件-------释放全局变量DIR	free(DIR)))

 rollout exportFBX_ue4cam_v2 "批出fb模&UEcam_V2:模式自选" width:200 height:100(
HyperLink explain "指定目录即可,不需要打开文件" pos:[25,0] width:200 height:15 color:(color 255 155 0)
edittext selfile "" pos:[10,15] width:140 height:19 text:"...请选择目录"
button btn_browse "..."  pos:[160,15] width:30 height:19
checkBox ignore "忽略backup文件" pos:[60,35] width:100 height:19
label explain1 "输出相机是打开模式,输出模型是导入模式" pos:[0,64] width:200 height:15 
radioButtons rdo1 "" pos:[30,50] width:168 height:16 labels:#("输出相机", "输出模型") default:1 columns:2	 
button	 bt_create	"批量输出fbx" pos:[20,80] width:150 height:32 enabled:true---函数部分--fn LoadOrMergeFile f = (if rdo1.state ==1 then (loadMaxfile f missingExtFilesAction:#logmsg)if rdo1.state ==2 then (mergeMaxfile f ))  ---------逐行写入文本------------
fn format_txt FilePath filetext1 filetext2=
(	if doesFileExist FilePath == truethen(fin = openfile FilePath mode:"r+"seek fin #eoftxt = filetext1+RenderWidth as string+"\n"+filetext2+RenderHeight as string+"\n"format txt to:finclose fin)else(newfile = createFile FilePath writeBOM:trueclose newfileformat_txt FilePath filetext1 filetext2)
)
-- 逐行写入文本---///end函数部分--on btn_browse pressed do( global DIR = getSavePath caption:"选择max目录"if (DIR != undefined) do ( selfile.text = DIR )	)	on bt_create pressed do( files =DIR+"/"+"*.max"OldFiles=getfiles files	GetFile= getFiles filesif (ignore.checked)then(		---排除掉backup文件--WillDelFiles=getfiles (DIR+"\*backup*.max")for j = 1 to WillDelFiles.count do	while (index = (findItem GetFile WillDelFiles[j])) != 0 do (deleteItem GetFile index)---排除掉backup文件end-- )Maxfiles=GetFile for f in Maxfiles do (---切割文本内容mydir=trimRight f ".max"global FileName=trimLeft mydir DIRglobal FilePath=(DIR+"/"+FileName+".txt") as string	--导入max文件--- LoadOrMergeFile f	 ----输出model.fbx ---		 -- 		ExportModel,见 rdo1的写在那里面if rdo1.state ==1 then (---选择相机(包括隐藏的)跳过目标物体camsArr = for o in cameras where classof o != targetobject collect oselect camsArr  filter:FilterCameras showHidden:trueMaxCamSelSet = selection as array	------start输出cam.fbx------for i in MaxCamSelSet do(MAXCAM= iFreecamera fov:45 targetDistance:314.512 nearclip:1 farclip:1000 nearrange:0 farrange:1000 mpassEnabled:off mpassRenderPerPass:off pos:[0,0,0] isSelected:onhide $$.name =FileName+"."+i.name --设置相机名称UE4CAM =$UE4CAM.Position=MAXCAM.positionUE4CAM.FOV=MAXCAM.FOV--位置约束UE4CAM.Position.controller= Position_Constraint ()A = UE4CAM.Position.controllerA.appendTarget MAXCAM 100--方向约束UE4CAM.rotation.controller= Orientation_Constraint ()B = UE4CAM.rotation.controllerB.appendTarget MAXCAM 100--开始塌陷local forceUpdate = keyboard.shiftPressed -- if SHIFT is pressed when the macro is called, a viewport redraw is enforced for each timestep to ensure a full update of all controllersif forceUpdate then format "MB Collapse: Enforcing full viewport update. This might be slow but will ensure proper updating of all controllers\n"local p = undefinedlocal old_prs_ctrl = copy UE4CAM.transform.controller		-- store old controller for catch()with undo on (if not forceUpdate then disableSceneRedraw();	-- not using redraw context for max4 compatibility-- disableSceneRedraw is problematic as not all scripted controllers are updated!try (p = Point()								-- create temp point object-- copy global transform of source object into temp objectfor i = animationRange.start to animationRange.end do (if forceUpdate then sliderTime = i	-- set slider time to force a global update of all animation dataat time i (with animate on p.transform = UE4CAM.transform))-- kill old transform controller and assign new, clean oneUE4CAM.transform.controller = transform_script()	UE4CAM.transform.controller = prs()	if not (isGroupMember UE4CAM) then UE4CAM.parent = undefined	-- unlink if not in a group-- copy temp object animation back into source objectfor i = animationRange.start to animationRange.end do (at time i (with animate on	UE4CAM.transform = p.transform))delete p			-- delete temp point objp = undefinedif not forceUpdate then enableSceneRedraw())--trycatch(format "coder zsz:QQ  : Fatal error - exiting\n"if p!=undefined then delete pUE4CAM.transform.controller = old_prs_ctrlif not forceUpdate then enableSceneRedraw())-- catch				)--with undo--塌陷结束----对齐相机的关键帧到动画范围---debb = 10000finn=-10000 for a in selection do(if (numKeys a.position.controller > 0)then(sortKeys a.controllernum_keys = numkeys a.position.controllerstarttime = getkeytime a.position.controller 1endtime = starttimefor O = 1 to num_keys do (key_time = getkeytime a.position.controller Oif key_time > endtime thenendtime = key_time)if starttime < debb then debb = starttimeif endtime > finn then finn = endtime)else(starttime = 1endtime = 100				if starttime < debb then debb = starttimeif endtime > finn then finn = endtime				))animationRange = interval debb finn	----对齐相机的关键帧到动画范围end---	--------导出fbx文件-------CAM=MAXCAM.nameFBXFileName=DIR+"/"+FileName+"."+CAM+".fbx"exportFile FBXFileName #noPrompt selectedOnly:true using:fbxexpp	)	------end输出cam.fbx------------输出cam.txt------if MaxCamSelSet.count !=0 then(				format_txt FilePath "renderWidth=" "renderHight=")------end输出cam.txt------)if rdo1.state ==2 then (---------只输出bip模型--------------选择所有bip物体select $'*bip*' mysel= selection as array--根据bip选择根for f in mysel do(fn getRoot node = if isvalidnode node do (while node.parent != undefined do node = node.parent; node)aaa=getRoot fselect aaa)--根据根选择此层级所有物体if selection.count !=0 then(fn getTheChildren obj:selection[1] includeParent:false = (execute ("$'" + (obj.name)+"'/"+(if includeParent then "" else "*/")+".../*"))select (getTheChildren includeParent:true)select (getTheChildren())getTheChildren includeParent:true as arraygetTheChildren() as array)-----对齐帧处理-----debb = 10000finn=-10000 for a in selection do(if  (classof a == BoneGeometry) then(if (numKeys a.position.controller > 0)then(sortKeys a.controllernum_keys = numkeys a.position.controllerstarttime = getkeytime a.position.controller 1endtime = starttimefor O = 1 to num_keys do (key_time = getkeytime a.position.controller Oif key_time > endtime thenendtime = key_time)if starttime < debb then debb = starttimeif endtime > finn then finn = endtime))if (classof a == Biped_Object) then(if (numKeys a.transform.controller > 0)then(sortKeys a.controllernum_keys = numkeys a.transform.controllerstarttime = getkeytime a.transform.controller 1endtime = starttimefor O = 1 to num_keys do (key_time = getkeytime a.transform.controller Oif key_time > endtime thenendtime = key_time)if starttime < debb then debb = starttimeif endtime > finn then finn = endtime)))animationRange = interval debb finn	-----end对齐帧处理-----------------查找蒙皮中具有bip字样的模型并一起选择---------------if selection.count !=0 then(		  actionMan.executeAction 0 "283"  -- Tools: Unfreeze Allmax unfreeze allallTheSkin = for obj in objects where (classof obj==PolyMeshObject)  collect objfor f in allTheSkin do(skinMods = getclassinstances Skin target:f max modify modemodPanel.setCurrentObject f.modifiers[#Skin]skinOps.getnumberbones skinMods[1]bonename =skinOps.getBoneName skinMods[1] 1 0bonename =skinOps.getBoneName skinMods[1] 2 0	if findString bonename "Bip" ==1 then (join mysel f)else(deselect f)selectmore mysel))---------只输出bip模型----------------start 输出model.fbx---	if selection.count !=0 then(		AA=Dir+"/"+FileName+"."+"model"+".fbx"	exportFile  AA #noPrompt selectedOnly:true using:fbxexp)----end 输出model.fbx---) ------重置max场景-------resetMaxFile #noPrompt	)----删除导入机制生产的备份文件------排除掉新产生的backup文件--NewFiles=getfiles (DIR+"\*.max")for j = 1 to OldFiles.count do	while (index = (findItem NewFiles OldFiles[j])) != 0 do (deleteItem NewFiles index)WillDelFiles=NewFiles---排除掉新产生的backup文件end--for a in WillDelFiles do(			deletefile a) ----删除导入机制生产的备份文件-------释放全局变量DIR	free(DIR)))

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/diannao/5396.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

一个单例模式中使用std::unique_ptr引起的莫名其妙的COFF损坏的问题(未解决)

使用static std::unique_ptr和static std::shared_ptr都不行struct IElementAgendaEvents {//! Called to allow listeners to modify the agenda by adding/removing entries before applying tool operation. Return true if entries added or invalidated.virtual bool …

如何使用Scrapy和Python 3爬取网页

简介 网络爬虫&#xff0c;通常称为网络爬行或网络蜘蛛&#xff0c;是以编程方式浏览一系列网页并提取数据的行为&#xff0c;是处理网络数据的强大工具。 通过使用网络爬虫&#xff0c;您可以挖掘有关一组产品的数据&#xff0c;获取大量文本或定量数据以进行分析&#xff0…

1、FreeCAD概述与架构

FreeCAD介绍 FreeCAD的诞生&#xff1a;2002年10月29日&#xff0c;由Jrgen Riegel上传了版本0.0.1的初始上传。FreeCAD的维基百科页面显示&#xff0c;FreeCAD基本上是由不同强大的库组成的集合&#xff0c;其中最重要的是openCascade&#xff0c;用于管理和构建几何体&#x…

【Vue 2.x】学习vue之一基础部分

文章目录 Vue 一基础部分第一章1、git两个分支主分支子分支 使用方法方式1&#xff1a;采用命令的方式操作分支方式2&#xff1a;在idea中使用git的分支 向git远程仓库提交时忽略文件使用git时的一些冲突注意事项 2、Vue问题1&#xff1a;什么是Vue&#xff1f;问题2&#xff1…

泰勒创造力达到顶峰?(下)

上文说了一半&#xff0c;回顾看文&#xff1a; https://blog.csdn.net/weixin_41953346/article/details/138336524 继续看下文 “Like I lost my twin /Fuck it if I cant have him,"she sings in “Down Bad". 在《Down Bad》这首歌中&#xff0c;她唱道&#xff…

TiDB系列之:使用TiUP部署TiDB集群最新版本,同时部署TiCDC的详细步骤

TiDB系列之:使用TiUP部署TiDB集群最新版本,同时部署TiCDC的详细步骤 一、部署TiDB集群二、准备环境三、安装 TiUP四、安装TiUP cluster组件五、初始化包含TiCDC的TiDB集群拓扑文件六、检查和修复集群存在的潜在风险七、查看可以安装的tidb版本八、部署 TiDB 集群:九、查看集…

Activiti7 开发快速入门【2024版】

记录开发最核心的部分&#xff0c;理论结合业务实操减少废话&#xff0c;从未接触工作流快速带入开发。假设你是后端的同学学过JAVA和流程图&#xff0c;则可以继续向后看&#xff0c;否则先把基础课程书准备好先翻翻。 为什么要工作流 比起直接使用状态字段&#xff0c;工作…

工业互联网常用开源库

libopen62541 opc-ua开源库 libmodbus modbus开源库 libsocketcan can 开源库 canutils&#xff1a;ubuntu 中socket can 与can通道绑定命令ifconfig -a 查看当前can设备名如can0ip link set down can0ip link set can0 type can bitrate 5000ip link set up can0cansend ca…

【C++之多态的知识】

C学习笔记---018 C之多态的知识1、C多态的简单介绍1.1、多态的分类1.2、多态的构成条件 2、虚函数2.1、虚函数的重写(覆盖) 3、虚函数重写的两个例外3.1、协变&#xff1a;(基类与派生类虚函数返回值类型不同)3.2、析构函数的重写(基类与派生类析构函数的名字不同) 4、两个关键…

redis运维篇下篇

最近在学redis&#xff0c;由于笔者是学运维的&#xff0c;所以推荐学习运维的小伙伴参考&#xff0c;希望对大家有帮助&#xff01; redis运维篇上篇:http://t.csdnimg.cn/MfPud 附加redis多用户管理:http://t.csdnimg.cn/DY3yx 目录 十.redis慢日志 十一.redis的key的有效…

dvwa kali SQL注入

high: 1.txt的来源 1.txt的内容 手动添加&#xff1a; id1&SubmitSubmit 执行&#xff1a; sqlmap -r /root/1.txt -p id --second-url "http://192.168.159.128:20000/vulnerabilities/sqli_blind/" --batch medium&#xff1a; 换链接&#xff0c;换cook…

HDFS存取策略联系

书上关于这部分分了三个点&#xff1a; 1.数据存放 2.数据读取 3.数据复制 但数据存放和数据复制都是数据写操作过程中的&#xff0c;“存放”体现一种思想&#xff0c;“复制”体现过程&#xff0c;整个数据写操作过程如下&#xff1a; 1.分块&#xff1a;当客户端写入一个…

【JS篇之】异常

前言&#xff1a;在代码编写过程中&#xff0c;最常遇到的就是程序异常。其实异常并非坏事&#xff0c;它可以让开发人员及时发现、定位到错误&#xff0c;提醒我们做正确的事情&#xff0c;甚至在某些时候&#xff0c;我们还会手动抛出异常。 1.异常的分类 在JS中&#xff0…

2021 OWASP Top 10-零基础案例学习

文章目录 A01:2021 – 权限控制失效情境 #1: SQL 注入攻击风险风险与后果解决方案情境 #2: 未经授权的访问控制漏洞风险与后果解决方案 A02:2021 – 加密机制失效情境 #1: 自动解密的信用卡卡号与SQL注入情境 #2: 弱SSL/TLS使用与会话劫持情境 #3: 不安全的密码存储与彩虹表攻击…

http实现post请求时本地没问题,线上报413错误、nginx配置免费https、nginx反向代理

MENU 错误原因解决其他方式关于nginx的文章 错误原因 前端发送请求以后后端没有收到请求 而客户端却报了413错误 是请求实体过大的异常 如果请求夹带着文件就可能造成请求实体过大 那这里是什么原因造成的呢 在基础的后端开发中 都会用到nginx反向代理 默认大小为1M 超过1M都会…

LinkedList与链表

文章目录 ArrayList的缺陷链表链表的概念及结构链表的实现 LinkedList的使用什么是LinkedListLinkedList具体使用 ArrayList和LinkedList的区别 ArrayList的缺陷 通过源码知道&#xff0c;ArrayList底层使用数组来存储元素 由于其底层是一段连续空间&#xff0c;当在ArrayList任…

Windows 11 系统安装时如何跳过联网和逃避微软账号登录

问题描述 Windows 11 是从 22H2 版本之后开始强制联网何登录微软账号的。 这就带来两个问题&#xff1a; 1、如果我的电脑没有网络或者网卡驱动有问题&#xff0c;那就无法继续安装系统了。 2、如果我有强怕症&#xff0c;就是不想登录微软账号&#xff0c;害怕个人信息泄露…

SpringEL表达式编译模式SpelCompilerMode详解

https://docs.spring.io/spring-framework/reference/core/expressions.html 在构建SpringEL表达式解析器时候&#xff0c;发现可以传递个SpelCompilerMode参数&#xff0c;这个值不传的话默认是OFF // SpelParserConfiguration config new SpelParserConfiguration(); Spel…

uniApp+Vue3+vite+Element UI或者Element Plus开发学习,使用vite构建管理项目,HBuilderX做为开发者工具

我们通常给小程序或者app开发后台时&#xff0c;不可避免的要用到可视化的数据管理后台&#xff0c;而vue和Element是我们目前比较主流的开发管理后台的主流搭配。所以今天石头哥就带大家来一起学习下vue3和Element plus的开发。 准备工作 1&#xff0c;下载HBuilderX 开发者…

Portworx安装和使用

Portworx安装和使用 Portworx介绍 Portworx是一家美国存储初创公司&#xff0c;它研发了业界第一个容器定义存储系统Portworx。Portworx提供了全新的、统一的Scale out存储栈&#xff0c;其核心架构是共享的、松耦合的、分布式、基于元数据的块存储层(卷、块设备、全局共享卷…