Label仿写开心消消乐说明文字的 黑色和黄色

//黑色(粗)
Label* labDesp1 = Label::createWithSystemFont(helpDesp1[i], "Arial", 30);
labDesp1->setColor(Color3B(34, 11, 0));
labDesp1->enableOutline(Color4B::RED, 1);
labDesp1->setPosition(panel1->getPosition());
layoutTmp->addChild(labDesp1);
        
//黄色
Label* labDesp2 = Label::createWithSystemFont(helpDesp2[i], "Arial", 26);
labDesp2->setWidth(260);
labDesp2->setColor(Color3B(123, 81, 17));
labDesp2->setPosition(panel2->getPosition());


你可能感兴趣的:(Label仿写开心消消乐说明文字的 黑色和黄色)