| 516 | } |
| 517 | |
| 518 | void MapEditor::SendInRabbot() { |
| 519 | LOG_ASSERT(state_ != MapEditor::kInGame); |
| 520 | LOGI << "Requesting player-controlled mode..." << std::endl; |
| 521 | scenegraph_->UpdatePhysicsTransforms(); |
| 522 | state_ = MapEditor::kInGame; |
| 523 | LOGI << "Request successful..." << std::endl; |
| 524 | } |
| 525 | |
| 526 | void MapEditor::StopRabbot(bool handle_gui) { |
| 527 | LOG_ASSERT(state_ == MapEditor::kInGame); |
no test coverage detected