This is an old revision of the document!
Starting with a parent object, get the first Child Object by name.
orxOBJECT* GetChildObjectFromScene(orxOBJECT *parentObject, orxSTRING childName) { for (orxOBJECT *pstChild = orxObject_GetOwnedChild(parentObject); pstChild; pstChild = orxObject_GetOwnedSibling(pstChild)) { const orxSTRING name = orxObject_GetName(pstChild); if (orxString_Compare(name, childName) == 0) { return pstChild; } } return orxNULL; }