| 833 | /// NodeOpaqueTest |
| 834 | |
| 835 | NodeOpaqueTest::NodeOpaqueTest() |
| 836 | { |
| 837 | Sprite* background = nullptr; |
| 838 | |
| 839 | for (int i = 0; i < 50; i++) |
| 840 | { |
| 841 | background = Sprite::create("Images/background1.png"); |
| 842 | background->setBlendFunc(BlendFunc::ALPHA_PREMULTIPLIED); |
| 843 | background->setAnchorPoint(Vec2::ZERO); |
| 844 | addChild(background); |
| 845 | } |
| 846 | } |
| 847 | |
| 848 | std::string NodeOpaqueTest::title() const |
| 849 | { |
nothing calls this directly
no test coverage detected