| 1086 | } |
| 1087 | |
| 1088 | void Console::commandProjectionSubCommand2d(socket_native_type /*fd*/, std::string_view /*args*/) |
| 1089 | { |
| 1090 | auto director = Director::getInstance(); |
| 1091 | Scheduler* sched = director->getScheduler(); |
| 1092 | sched->runOnAxmolThread([=]() { director->setProjection(Director::Projection::_2D); }); |
| 1093 | } |
| 1094 | |
| 1095 | void Console::commandProjectionSubCommand3d(socket_native_type /*fd*/, std::string_view /*args*/) |
| 1096 | { |
nothing calls this directly
no test coverage detected