Disabling panning in the orbit mode is not available in the user interface, but you can do it by manually modifying the scene.json file in the scene directory:
- Backup the original
scene.json. - Get
scene.jsonin the readable format: http://localhost:5000/scenes/YOUR-SCENE-NAME/scene.json?pretty by saving the content of the page, overwritingscene.json. - Look for the
"views"list inscene.json, and for your orbit view add"noPan": true, as in the below example:
{
"distance": 20.45041967393793,
"hideFromMenu": false,
"id": 2,
"mode": "orbit",
"name": "Orbit",
"noPan": true,
"rotation": [
0.23571428571421107,
-90
],
"sky": "default",
"target": [
-0.2649026459631804,
-0.8169712913458882,
-0.8443562984466553
]
}