| 809 | // scene management |
| 810 | |
| 811 | void Director::runWithScene(Scene* scene) |
| 812 | { |
| 813 | AXASSERT(scene != nullptr, |
| 814 | "This command can only be used to start the Director. There is already a scene present."); |
| 815 | AXASSERT(_runningScene == nullptr, "_runningScene should be null"); |
| 816 | |
| 817 | pushScene(scene); |
| 818 | startAnimation(); |
| 819 | } |
| 820 | |
| 821 | void Director::replaceScene(Scene* scene) |
| 822 | { |
no outgoing calls
no test coverage detected