| 2191 | } |
| 2192 | |
| 2193 | LabelMultilineWithOutline::LabelMultilineWithOutline() |
| 2194 | { |
| 2195 | auto label = Label::createWithTTF("Multi-line text\nwith\noutline feature", "fonts/arial.ttf", 24); |
| 2196 | label->enableOutline(Color4B::ORANGE, 1); |
| 2197 | label->setPosition(VisibleRect::center()); |
| 2198 | addChild(label); |
| 2199 | } |
| 2200 | |
| 2201 | std::string LabelMultilineWithOutline::title() const |
| 2202 | { |
nothing calls this directly
no test coverage detected