- .hファイルの修正
class HelloWorld : public cocos2d::Layer
を下記に変更。
HelloWorldScene.h
class HelloWorld : public cocos2d::LayerColor
- .cppファイルの修正
HelloWorldScene.cpp
bool HelloWorld::init()
{
//////////////////////////////
// 1. super init first
if ( !Layer::init() )
{
return false;
}
if(!LayerColor::initWithColor(Color4B(255, 255, 255, 255)))
{
return false;
}
できました。
参考URL:http://stackoverflow.com/questions/12117250/how-to-set-background-color-of-layer-in-cocos2d-x