| 250 | //------------------------------------------------------------------------------ |
| 251 | |
| 252 | void LuxCoreApp::MenuCamera() { |
| 253 | if (session && ImGui::MenuItem("Print properties")) { |
| 254 | const luxrays::Properties &cameraProps = session->GetRenderConfig(). |
| 255 | GetScene().ToProperties().GetAllProperties("scene.camera."); |
| 256 | LC_LOG("Current camera properties:" << endl << cameraProps.ToString()); |
| 257 | } |
| 258 | } |
| 259 | |
| 260 | //------------------------------------------------------------------------------ |
| 261 | // MenuTiles |
nothing calls this directly
no test coverage detected