私のアプリケーションでは、画面に触れると物理スプライトがゲームレイヤーに追加されます。すべての physicalSprites が NSMutableArray に追加されます。配列数が 5 に達したら、追加されたすべてのphysicsSprites を同時に縮小したいと考えています。
試してみましたが、うまくいきません。
助けてください。
//スプライトを作成
-(void) addNewSpriteAtPosition:(CGPoint)pos
{
PhysicsSprite *sprite = [PhysicsSprite spriteWithFile:@"sprite.png"];
sprite.position = pos;
sprite.tag = 1;
[sprites addObject:sprite];
[self addChild: sprite];
int num = 4;
cpVect verts[] = {
cpv(-20,-20),
cpv(-20, 20),
cpv( 20, 20),
cpv( 20,-20),
};
cpBody *body = cpBodyNew(1.0f, cpMomentForPoly(1.0f, num, verts, CGPointZero));
cpBodySetPos( body, pos );
cpSpaceAddBody(space_, body);
cpShape* shape = cpPolyShapeNew(body, num, verts, CGPointZero);
cpShapeSetElasticity( shape, 0.5f );
cpShapeSetFriction( shape, 0.5f );
cpSpaceAddShape(space_, shape);
[sprite setPhysicsBody:body];
NSLog(@"array size :%i",[sprites count]);
}
- (void)ccTouchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
{
for( UITouch *touch in touches ) {
CGPoint location = [touch locationInView: [touch view]];
location = [[CCDirector sharedDirector] convertToGL: location];
//add sprite
[self addNewSpriteAtPosition: location];
}
//scale sprites
if([sprites count]>5){
//[self terminateGame];
for(int i=0;i<[sprites count];i++){
PhysicsSprite *PS = [PhysicsSprite spriteWithFile:
[sprites objectAtIndex:i]];
id mAction1 = [CCScaleTo actionWithDuration:0.5 scaleX:0.5 scaleY:0.5];
[PS runAction:mAction1];
}
}
}
私は phisycsSprite.scale = 0.5; を実装しようとしました。更新メソッドでは機能しません。