0

BatchNodesを使って練習することにしましたが、ここで立ち往生しているコードは次のとおりです。

[[CCSpriteFrameCache sharedSpriteFrameCache]addSpriteFramesWithFile:@"scene1atlas.plist"];
[[CCSpriteFrameCache sharedSpriteFrameCache]addSpriteFramesWithFile:@"CloudsAtlas.plist"];

        sceneSpriteBatchNode = [CCSpriteBatchNode batchNodeWithFile:@"scene1atlas.png"];
        cloudSpriteBatchNode = [CCSpriteBatchNode batchNodeWithFile:@"CloudsAtlas.png"];

[self addChild:sceneSpriteBatchNode z:20];
[self addChild:cloudSpriteBatchNode z:21];

SomeGameObject *gameObject = [[SomeGameObject alloc]
                         initWithSpriteFrameName:@"sv_anim_1.png"];
gameObject.texture=[sceneSpriteBatchNode texture];

[sceneSpriteBatchNode addChild:gameObject
                                     z:1000 tag:kGameObjectTagValue];

*** Assertion failure in -[GameObject setTexture:]

テクスチャを正しく設定するにはどうすればよいですか?

4

0 に答える 0