我知道这是一个非常愚蠢的问题,但我试图调整大小并且不进行反思。
CCSprite * title;
title = [CCSprite spriteWithFile:@"flow.png"];
[title setScaleX:0.55f];
[title setScaleY:0.55f];
答案 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];