1

我正在尝试以多边形形状添加纹理。我对下面的代码感到震惊。我没有得到整个形状的纹理。

我需要重复应用纹理整个形状。我也在尝试 ccTexParams 中的“GL_REPEAT”。但 NPOT 图像不支持它。

你能在下面的代码中找到任何问题吗?

tongue = CCTextureCache::sharedTextureCache()->addImage("Icon-72.png");
ccTexParams params = {GL_LINEAR,GL_LINEAR,GL_CLAMP_TO_EDGE,GL_CLAMP_TO_EDGE};
tongue->setTexParameters(&params);
tongue->retain();
cocos2d::CCSprite* sprite = cocos2d::CCSprite::createWithTexture(tongue);
this->addChild(sprite);
4

0 回答 0