我已尝试将 CCSpriteSheet 更改为 CCSpriteBatchNode,因为它已被弃用。
前:
ss = [[CCSpriteSheet alloc] initWithFile:spriteFile capacity:frameCount];
后:
ss = [[CCSpriteBatchNode alloc] initWithFile:spriteFile capacity:frameCount];
我收到以下警告:
从“CCSpriteBatchNode *”分配给“CCSpriteSheetInternalOnly *”的不兼容指针类型
我对此很陌生,并且感觉我错过了一些明显的东西。