Where is Configure Stage meta data stored?

   2883   1   0
User Avatar
Member
620 posts
Joined: Nov. 2013
Offline
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 - Sept. 7, 2020 09:17:46
User Avatar
Staff
4438 posts
Joined: July 2005
Offline
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