| 739 | } |
| 740 | |
| 741 | void DemoTimeScale::update(float dt) |
| 742 | { |
| 743 | auto p = (ParticleSystem*)getChildByTag(2); |
| 744 | |
| 745 | elapsedTime += Director::getInstance()->getDeltaTime(); |
| 746 | auto scale = (sin(elapsedTime * 4) + 1.0F) / 2.0F; |
| 747 | p->setTimeScale(scale); |
| 748 | } |
| 749 | |
| 750 | //------------------------------------------------------------------ |
| 751 | // |
nothing calls this directly
no test coverage detected