본문 바로가기

728x90

Life Insight

(79)
[c4d python] object 오브젝트 가져오기 for obj in doc.GetObjects(): children = object.GetChildren() import c4d from c4d import gui def test(): o = doc.GetActiveObject() # Only one object # o = doc.GetActiveObjects(0) # return list if not o: return o.SetName('test') c4d.EventAdd() if __name__ == '__main__': test() import c4d from c4d import gui def test(): print 'hello' o = doc.GetActiveObjects(0) if o == []: return newName ..
[c4d python] 스크립트 사용법 (+ Plugin) Cinema 4D 3D 디자이너들은 다양한 툴을 다루는것 같은데, 그중 Cinema 4D 라는 툴도 유명한것 같습니다. 우연히 기회가 생겨 Cinema 4D 플러그인을 만들어 볼려고 합니다. 😎 환경구축 자동완성이나 Lint도 있는 것 같지만, 일단 제일 기본적인 환경구축을 해볼려고 합니다. Script 탭에서 Console과 Script Manager를 킵니다. 그리고 저는 파이참에서 코딩을 하고, 파일을 Script Manager로 Open 해서 실행을 했습니다. 첫 코드! 선택한 오브젝트의 이름을 출력해보자! obj = doc.GetActiveObject() print obj.GetName() 출력이 되네요! 저 파란색부분을 드래스 해서 위에 버튼으로 만들수도 있습니다😀 하지만 두개를 클릭하면 에러..
[vim] Learn Vim Baby Steps change Caps Lock to ctrl key in windows hjkl, ctrl+c Motions w: beginning of a word e: to jump to the end of a word b: jump to the beginning of a word backwards ge: to jump to the end of a word backwards. There are word and WORD. Use W, B, E, gE to jump by WORD. This is useful in case: function helloVimWorld() { console.log("Hello vim world"); } f{character}: character not string on o..
[vim] Remap key on windows (캡스락 키를 ctrl 키로 변경) Remap vim 을 사용하려고 공부하고 있는데, 예전에는 Insert mode에서 Basic mode로 갈때, 단순히 Esc 키를 눌러서 빠져나왔습니다. 근데 외국 애들은 보니 ctrl + c 키로 빠져나오는 것을 추천한다고 합니다. 추가적으로 새끼손가락이 밑으로 내려가니깐 caps lock 을 ctrl 키로 변경해서 사용합니다. 이게 설득력이 있는게, 해피해킹 키보드를 보니깐 ctrl 이 없고, 캡스락 키 자리에 ctrl 이 있습니다. 🙄 맥에서는 자체적으로 key map을 할 수 있어서 쉽게 변경할 수 있지만, 윈도우는 가벼운 프로그램을 다운로드해서 변경할 수 있습니다. github.com/randyrants/sharpkeys/releases 위 링크에서 sharpkeys392.msi 을 다운받아 ..
[jetbrains] Useful setting and plug-in (Webstorm, Pycharm, Intel) Hi there! Let me introduce useful features that I use in multiple jetbrains tool :) Keymap If you windows users, ctrl + w key is very nice thing to close tab. Let's change keymap Ctrl + Shift + F4 to Ctrl + w in Setting(ctrl +alt+ s) Rainbow Brackets You can find Rainbow brakets in Settings -> Plugins -> Search: Rainbow Brackets If you have experice about Backets Hell, you might know this plug-i..
[3dsMax python] Log Logging 모듈 print 문으로 어느 정도 로그를 남겼었지만, 스크립트를 만들어 디자이너에게 줄 경우, 로그파일이 필요해서 합니다. 참고로 맥스에 print 문이 많이 찍히게 되면 맥스가 멈춰서 한참 기다려야합니다. (무거운 파일이면 맥스가 꺼집니다) 그래서 저는 되도록이면 주요 로그는 콘솔에, 주요 로그와 세부로그는 파일로 남겨보겠습니다. 그냥 import 해서 사용하면 됩니다. 빨간 글씨로 출력이 됩니다. 하지만 default 레벨설정이 warning이여서 info 랑 debug는 출력안됩니다. import logging logging.debug("test") logging.info("test") logging.warning("test") logging.error("test") # WARNING..
[3dsMax python] GUI with pymxs 파일탐색기 Pyside2를 사용하지 않고 파일을 불러와봤습니다. from pymxs import runtime as rt path = os.path.dirname(os.path.abspath(__file__)) path_to_file = rt.getOpenFileName(caption="Open A Test Excel:", filename=path+'\\') 폴더경로를 가져올려면 아래처럼 하시면 됩니다. from pymxs import runtime as rt rtrt = rt.getSavepath() print rtrt Dialog Example wikidocs.net/35742\ max gui는 pyside2 를 사용하는데, 아주 좋은 문서가 나왔습니다. 저걸 보고 Dialog 창을 만들어봤습니다. ..
[3dsMax python] V-ray material with pymxs V-ray Renderer 이름이 V-ray 입니다. 카오스 그룹에서 만들었습니다. 한국지사도 있습니다. 저는 개발자여서 왜 Default 렌더러인 Arnold와 V-ray가 비슷해보이지만, 그래픽쪽 최전선에 있는 사람들 눈에는 "빛의 표현" 분야에서는 최고라고 합니다. V-ray 재질 생성 Vray가 깔려있다는 전제하에, 인터넷에 돌아다니는 맥스스크립트를 보고 파이썬으로 흉내를 내봤습니다. 놀랍게도 정상작동합니다 😎 from pymxs import runtime as rt if __name__ == '__main__': print 'Hi, velbie!' obj = rt.sphere() material = rt.VRayMtl() material.diffuse = rt.Color(255, 0, 0) # ..

728x90