简体   繁体   中英

Cocos2D-x Enable CCMenuItemSprite by tag c++

Is it possible to enable or disable a CCMenuItemSprite by it's tag?

example:

itemSprite(tag)->setEnabled(false);

Suppose menu is the parent of your item (probably object of CCMenu class) and tag is your tag, you can do something like this:

CCNode *itemSprite = menu->getChildByTag(tag);
itemSprite->setEnabled(false);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM