| 858 | /// NodeNonOpaqueTest |
| 859 | |
| 860 | NodeNonOpaqueTest::NodeNonOpaqueTest() |
| 861 | { |
| 862 | Sprite* background = nullptr; |
| 863 | |
| 864 | for (int i = 0; i < 50; i++) |
| 865 | { |
| 866 | background = Sprite::create("Images/background1.jpg"); |
| 867 | background->setBlendFunc(BlendFunc::DISABLE); |
| 868 | background->setAnchorPoint(Vec2::ZERO); |
| 869 | addChild(background); |
| 870 | } |
| 871 | } |
| 872 | |
| 873 | std::string NodeNonOpaqueTest::title() const |
| 874 | { |
nothing calls this directly
no test coverage detected