diff --git a/meshroom/ui/qml/Viewer/Viewer3D.qml b/meshroom/ui/qml/Viewer/Viewer3D.qml index e77f5f42..6d7f054a 100644 --- a/meshroom/ui/qml/Viewer/Viewer3D.qml +++ b/meshroom/ui/qml/Viewer/Viewer3D.qml @@ -160,6 +160,18 @@ FocusScope { } } + // Scene light, attached to the camera + Entity { + components: [ + PointLight { + color: "white" + }, + Transform { + translation: mainCamera.position + } + ] + } + DefaultCameraController { id: cameraController camera: mainCamera