コード例 #1
0
ファイル: PopupLayer.cpp プロジェクト: coolshou/richer
PopupLayer* PopupLayer::create(const char *backgroundImage)
{
    PopupLayer* ml = PopupLayer::create();
    ml->setSpriteBackGround(Sprite::create(backgroundImage));
    ml->setSprite9BackGround(Scale9Sprite::create(backgroundImage));
    return ml;
}
コード例 #2
0
PopupLayer* PopupLayer::create(const char *backgroundImage){
    PopupLayer* ml = PopupLayer::create();
    ml->setSpriteBackGround(CCSprite::create(backgroundImage));
    //ml->setSpriteBackGround(extension::Scale9Sprite::create(backgroundImage));
    return ml;
}