Repeating background in cocos2d has black edges!(cocos2d 中的重复背景有黑边!)
问题描述
我正在尝试为我的 iPhone 应用设置平铺/重复背景.
I am attempting to setup a tiled/repeating background for my iPhone app.
代码有效",因为背景正在重复,但我似乎在每次重复周围都有一个黑色边框,我不知道为什么,图像正好是 200x200.这是它与代码的外观截图:
The code "works" in that the background is repeating like it should be but I seem to have a black border around each repetition and I dont know why, the image is exactly 200x200. Here is a screenshot of how it looks along with the code:
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];
}
推荐答案
纹理应该始终是两个的幂...例如 16,32,64,128,256,512,1024.
Textures should always be in power of two... like 16,32,64,128,256,512,1024.
尝试将图像大小调整为 256x256 或 128x128.
Try resizing the image to 256x256 or 128x128.
这篇关于cocos2d 中的重复背景有黑边!的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:cocos2d 中的重复背景有黑边!
基础教程推荐
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01