Houdini

Non Commercial 힙파일 변환

Tedd_Kim 2024. 9. 25. 10:57

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