@panoramax/web-viewer 4.0.1-develop-c7df5a60 → 4.0.1-develop-676dfe51
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1 -0
- package/build/index.js +2 -2
- package/build/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/ui/Photo.js +3 -1
package/package.json
CHANGED
|
@@ -266,7 +266,9 @@ export default class Photo extends PSViewer {
|
|
|
266
266
|
}
|
|
267
267
|
// Different sequence -> Point to center + no animation
|
|
268
268
|
else {
|
|
269
|
-
nodeTransition = forwardNoAnim
|
|
269
|
+
nodeTransition = Object.assign(forwardNoAnim, {
|
|
270
|
+
rotateTo: { pitch: 0, yaw: 0 },
|
|
271
|
+
});
|
|
270
272
|
}
|
|
271
273
|
}
|
|
272
274
|
|