Where is Configure Stage meta data stored?

   3415   1   0
User Avatar
Member
672 posts
Joined: 11月 2013
オフライン
Hi,

Is there any location like HoudiniLayerInfo to store population mask info generated by configure stage lop?
And how to see the infos about them?
Thanks!
Edited by jerry7 - 2020年9月7日 09:17:46
User Avatar
スタッフ
4557 posts
Joined: 7月 2005
オフライン
That information is available on the LOP node stage itself. You can get the stage population mask, the rules used to determine the se of loaded payloads, and the actual expanded list of prims that will load their payloads:

hou.node("/stage/lopname").stage().GetPopulationMask()
hou.node("/stage/lopname").stage().GetLoadRules()
hou.node("/stage/lopname").stage().GetLoadSet()
  • Quick Links