mirror of https://github.com/axmolengine/axmol.git
* add CCNode::getChildrenCount()
This commit is contained in:
parent
279e915b55
commit
f8dafe6712
|
@ -319,6 +319,11 @@ CCArray* CCNode::getChildren()
|
|||
return m_pChildren;
|
||||
}
|
||||
|
||||
unsigned int CCNode::getChildrenCount(void)
|
||||
{
|
||||
return m_pChildren ? m_pChildren->count() : 0;
|
||||
}
|
||||
|
||||
/// camera getter: lazy alloc
|
||||
CCCamera* CCNode::getCamera()
|
||||
{
|
||||
|
|
|
@ -191,6 +191,8 @@ class CC_DLL CCNode : public SelectorProtocol, public CCObject
|
|||
|
||||
CC_PROPERTY_READONLY(CCArray*, m_pChildren, Children)
|
||||
|
||||
unsigned int getChildrenCount(void);
|
||||
|
||||
/** A CCCamera object that lets you move the node using a gluLookAt
|
||||
*/
|
||||
CC_PROPERTY_READONLY(CCCamera *, m_pCamera, Camera)
|
||||
|
|
Loading…
Reference in New Issue