Hello!
I'm trying to override draw method of AtlasSprite. AtlasSprite is derived from CocosNode and CocosNode has draw method. I want to make custom actions in draw method of AtalsSprite. When I derived draw method of Sprite and create custom action in draw then it works. What should I do?
@implementation AtlasSprite2
- (void) draw
{
[super draw];
}