Cocos2D removeChildByTag,标签属于谁?
当我告诉 CCNode:
[node addChild:child z:0 tag:5];
假设 5 是一个唯一的标记号,调用:
[node removeChildByTag:5 cleanup:YES];
删除 child
..但是如果我想更改子级相对于父级的标记(node< /代码>) ?
更改 child.tag = 9
就足够了吗? (即调用[node removeChildByTag:9 cleanup:YES];
从node
中删除child
)。
谢谢。
When I tell a CCNode:
[node addChild:child z:0 tag:5];
Assuming 5 is a unique tag number, calling:
[node removeChildByTag:5 cleanup:YES];
removes child
.. but what if I wanted to change the tag of the child with respect to the parent (node
) ?
Will changing child.tag = 9
suffice? (i.e. calling [node removeChildByTag:9 cleanup:YES];
removes child
from node
).
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道Cocos是开源的!
发现这个:
显而易见的答案:
是的。
I didn't know Cocos was open source!
Found this:
The obvious answer:
YES.