| 13 | namespace skybolt { |
| 14 | |
| 15 | std::unique_ptr<vis::VisRoot> createExampleVisRoot() |
| 16 | { |
| 17 | auto visRoot = std::make_unique<vis::VisRoot>(); |
| 18 | visRoot->getViewer().setKeyEventSetsDone(osgGA::GUIEventAdapter::KEY_Escape); |
| 19 | return visRoot; |
| 20 | } |
| 21 | |
| 22 | } // namespace skybolt |