IOS调整大小CCSprite不起作用

时间:2014-03-26 13:21:44

标签: ios objective-c cocos2d-iphone

我知道这是一个非常愚蠢的问题,但我试图调整大小并且不进行反思。

 CCSprite * title;
 title = [CCSprite spriteWithFile:@"flow.png"];
 [title setScaleX:0.55f];
 [title setScaleY:0.55f];

1 个答案:

答案 0 :(得分:0)

调整Sprite flollowing代码

-(void)Spriteresize:(CCSprite*)sprite toWidth:(float)width toHeight:(float)height
{
    sprite.scaleX = width / sprite.contentSize.width;
    sprite.scaleY = height / sprite.contentSize.height;
}

使用以下方法

[self Spriteresize:title toWidth:300 toHeight:200];