| 2163 | } |
| 2164 | |
| 2165 | void EditorInterface::OpenSceneWindow(Ref<Scene> scene) |
| 2166 | { |
| 2167 | auto sceneEditor = CreateRef<SceneEditorWindow>(scene); |
| 2168 | sceneEditor->DockTo(SceneEditorDockspaceNodeID); |
| 2169 | sceneEditors.push_back(std::move(sceneEditor)); |
| 2170 | } |
| 2171 | |
| 2172 | void EditorInterface::OpenSceneWindow(const std::string& scenePath) |
| 2173 | { |
no test coverage detected