Graphics

 View Only
  • 1.  COM API - Get list of elements inside a group within a scene

    Posted 07-29-2015 21:42
    Is there any way to go about doing this? I'm not seeing anything in the SDK for it.


  • 2.  RE: COM API - Get list of elements inside a group within a scene

    Posted 07-29-2015 21:44
    Get the group using xpScene.GetObjectByName, then using the group (which will be an xpBaseObject), you can use xpBaseObject.GetFirstChild, and xpBaseObject.GetNextSibling to walk down the list of children objects in the group..

    #XPression


  • 3.  RE: COM API - Get list of elements inside a group within a scene

    Posted 07-29-2015 21:50
    Ah, so it was in there. Just some confusion with a SceneGroup and a Group inside a Scene. Thanks Brian.

    #XPression