From a5cf61f4107c46458c28461b79e8c2137fa43955 Mon Sep 17 00:00:00 2001 From: Nick Fisher Date: Tue, 6 Sep 2022 23:16:22 +1000 Subject: [PATCH] fix starting target position for manipulator --- ios/src/FilamentViewer.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/ios/src/FilamentViewer.cpp b/ios/src/FilamentViewer.cpp index 6471a525..47f17e3d 100644 --- a/ios/src/FilamentViewer.cpp +++ b/ios/src/FilamentViewer.cpp @@ -788,7 +788,6 @@ void FilamentViewer::_createManipulator() { .viewport(vp.width, vp.height) .orbitHomePosition(home[0], home[1], home[2]) .targetPosition(tp[0], tp[1], tp[2]) - // .targetPosition(fv[0], fv[1], fv[2]) .build(Mode::ORBIT); _lastFrameTimeInNanos = 0; Log("Created orbit manipulator for vp width %d height %d with home %f %f %f and target pos %f %f %f ", vp.width, vp.height, home[0], home[1], home[2], tp[0], tp[1], tp[2]);