본문 바로가기
3DsMax/bug

select by material 작동 안됨

by biped 2016. 4. 23.

Material editor > select by material  

해당 재질을 사용한 오브젝트를 씬에서 찾아주는 기능인데 max2016,2017 버젼에서 작동 안됨 

old  select by name 대화상자를 사용하면 제대로 된다. 


설정방법 참고 : 

http://blog.daum.net/3dsmaxman/247



추가: 

●  3ds max 2017버젼은 서비스팩3 에서 해결됨.



● 스크립트로 이용하는 방법:



(

theNames = for m in SceneMaterials collect m.name

rollout theRollout "Select By Material"

(

listBox myDropDownList items:theNames

on myDropDownList selected itm do

select (for o in Geometry where o.material != undefined and o.material.name == myDropDownList.selected collect o)

)

createDialog theRollout




● SoulburnScripts 사용. 


댓글