테드옹의 VFX
Non Commercial 힙파일 변환 본문
1. NC 버전에서 hscript texport를 열고
opscript -G -r / > $TEMP/your_hipName.cmd 입력
2. 커머셜 버전에서 hscript texport를 열고
cmdread $TEMP/your_hipName.cmd 입력
모든 hda들은 전부 unlock를 해야 안에 있는 노드들까지 복사가 되며, 이후 hda들은 버전업을 하든, 새로운 카피를 생성하든 hadnc에서 hda나 hdalc파일로 변환을 해야함
for node in hou.selectedNodes():
if node.type().name().find('tfx') != -1:
node.allowEditingOfContents()
커스텀 생성한 hda의 이름이 tfx로 시작한다면, 그 노드를 unlock할 때 allowEditingOfContents()함수를 이용하면 편리함
출처 : https://kiko3d.wordpress.com/2015/03/19/converting-houdini-not-commercial-files/
Converting Houdini Not Commercial Files
The fact that Houdini convert any comercial scene to non-commercial the moment you past any hipc content was bothering me for a long time. My school has an educational license of Houdini which work…
kiko3d.wordpress.com
'Houdini' 카테고리의 다른 글
Fog Volume의 표면만 필터링하기 (1) | 2024.11.07 |
---|---|
Solaris + Copernicus에서 표면에 디테일 주기 (2) | 2024.10.05 |
USD Solaris 개념 정리 (1) | 2024.06.08 |
Hython Render Command (0) | 2024.02.23 |
Python Panel 정리 (0) | 2023.11.27 |