如何使用CCRenderTexture创建背景?

时间:2011-12-10 06:08:27

标签: cocos2d-x

我正在尝试使用CCRenderTexture绘制一个简单的背景。

我创建了一个CCRenderTexture指针(初始化为宽度,ht,像素格式)

用一些颜色清除它。

添加到节点,

为节点添加了标签

=============================================== =========================================== 当我运行它时,我看到黑色屏幕上有一个hello world上面有一个标签。

那纹理在哪里?

bool HelloWorld::init()
{
    bool bRet = false;
    do 
    {
    //////////////////////////////////////////////////////////////////////////
    // super init first
    //////////////////////////////////////////////////////////////////////////

    CC_BREAK_IF(! CCLayer::init());

    //////////////////////////////////////////////////////////////////////////
    // add your codes below...
    //////////////////////////////////////////////////////////////////////////

    // 2. Add a label shows "Hello World".

    // Create a label and initialize with string "Hello World".
    CCLabelTTF* pLabel = CCLabelTTF::labelWithString("Hello World", "Thonburi", 64);
    CC_BREAK_IF(! pLabel);

    // Get window size and place the label upper. 
    CCSize size = CCDirector::sharedDirector()->getWinSize();
    pLabel->setPosition(ccp(size.width / 2, size.height - 20));

    // Add the label to HelloWorld layer as a child layer.
    this->addChild(pLabel, 1);

    CCRenderTexture *rt = CCRenderTexture::renderTextureWithWidthAndHeight(120, 120, kCCTexture2DPixelFormat_RGBA4444);

    rt->clear(CCRANDOM_0_1(), CCRANDOM_0_1(), CCRANDOM_0_1(), CCRANDOM_0_1());

    rt->setPosition(ccp(size.width/3, size.height/3));

    this->addChild(rt, 0);

    bRet = true;
} while (0);

return bRet;
}

2 个答案:

答案 0 :(得分:0)

This CCRenderTexture tutorial适用于Cocos2D iPhone,但它可能会给你一些想法。一般原则是相同的。例如,你应该尝试从该rendertexture创建一个单独的sprite,并将该sprite添加为child。

答案 1 :(得分:0)

我有此代码:

bool HelloWorld::init()
{
    //////////////////////////////
    // 1. super init first
    if ( !Scene::init() )
    {
        return false;
    }

    auto visibleSize = Director::getInstance()->getVisibleSize();
    Vec2 origin = Director::getInstance()->getVisibleOrigin();


    RenderTexture *rt = RenderTexture::create(120, 120, kCCTexture2DPixelFormat_RGBA4444);
    rt->clear(CCRANDOM_0_1(), CCRANDOM_0_1(), CCRANDOM_0_1(), CCRANDOM_0_1());
    rt->setPosition(ccp(visibleSize.width/3, visibleSize.height/3));

    this->addChild(rt, 0);
    return true;
}

这段代码生成了

enter image description here

我没有看帖子的日期。 我希望这会对其他人有所帮助。