Is there example code that shows how to change this? I know how to trap for the shift and control keys (I'm doing that in conjunction with the arrow keys to mimic Google Earth's camera behavior), but I don't know how to change the behavior in Cesium.
Thanks!
var viewer = new Cesium.Viewer('cesiumContainer');
var cameraController = viewer.scene.screenSpaceCameraController;
cameraController.lookEventTypes.modifier = Cesium.KeyboardEventModifier.CTRL;
cameraController.tiltEventTypes[2].modifier = Cesium.KeyboardEventModifier.SHIFT;
cameraController.tiltEventTypes[3].modifier = Cesium.KeyboardEventModifier.SHIFT;