我正在嘗試爲我的iPhone應用程序設置平鋪/重複背景。在cocos2d中重複背景有黑色邊緣!
代碼「工作」,因爲背景重複的應該是,但我似乎有一個黑色邊框每個重複周圍,我不知道爲什麼,圖像正好是200x200。這裏是它的代碼以及如何看起來截圖:
if ((self=[super init])) {
CCSprite * bg = [CCSprite spriteWithFile:@"pattern11.jpg" rect:CGRectMake(0, 0, 1000, 520)];
[bg setPosition:ccp(0, 0)];
ccTexParams params = {GL_LINEAR,GL_LINEAR,GL_REPEAT,GL_REPEAT};
[bg.texture setTexParameters:¶ms];
[self addChild:bg z:0];
}
非常感謝! – Chris