This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
en:examples:objects:get_child_object_by_name [2018/05/12 02:50 (7 years ago)] – sausage | en:examples:objects:get_child_object_by_name [2024/04/20 16:47 (12 months ago)] (current) – Update to show FindChild functionality, with material from function documentation comment hcarty | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Getting a Child Object by Name from a Parent Object ====== | ====== Getting a Child Object by Name from a Parent Object ====== | ||
- | Starting with a parent | + | Orx provides |
- | ===== Code ===== | + | ==== Paths ==== |
- | < | + | Paths are composed by object names separated by '' |
- | orxOBJECT* GetChildObjectByName(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, | + | |
- | return pstChild; | + | |
- | } | + | |
- | } | + | |
- | + | ||
- | return orxNULL; | + | |
- | } | + | |
- | </ | + | |
+ | For example: | ||
+ | * '' | ||
+ | * '' | ||
+ | * '' | ||
+ | * '' |