User Tools

Site Tools


en:examples:objects:get_child_object_by_name

This is an old revision of the document!


Getting a Child Object by Name from a Parent Object

Starting with a parent object, get the first Child Object by name.

Code

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, childName) == 0) {
				return pstChild;
			}
		}
 
	return orxNULL;
}
en/examples/objects/get_child_object_by_name.1526118645.txt.gz · Last modified: 2018/05/12 05:50 (7 years ago) (external edit)