Yeah, not sure I understand the difference. Because you can specify the target object by using CCCallFunc as well.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
CCCallFuncN passes the CCNode you called the action on to the method. For example if you need to run an action that removes the node from its parent you can use CCCallFuncN and then said method would look like this:
If you used a CCCallFunc instead you would have to keep a reference to said node in order to be able to retrieve it later and remove it in the called method. |
|||||
|