| 654 | } |
| 655 | |
| 656 | void CameraZoomTest::update(float dt) |
| 657 | { |
| 658 | Node* sprite; |
| 659 | // Camera *cam; |
| 660 | |
| 661 | _z += dt * 100; |
| 662 | |
| 663 | sprite = getChildByTag(20); |
| 664 | // cam = sprite->getCamera(); |
| 665 | // cam->setEye(0, 0, _z); |
| 666 | |
| 667 | sprite = getChildByTag(40); |
| 668 | // cam = sprite->getCamera(); |
| 669 | // cam->setEye(0, 0, -_z); |
| 670 | } |
| 671 | |
| 672 | std::string CameraZoomTest::subtitle() const |
| 673 | { |
nothing calls this directly
no test coverage detected