ScreenSpaceCameraController action event disorder

1. A concise explanation of the problem you're experiencing.
hello!
First of all, thank you very much for seeing my question.
I use ScreenSpaceCameraController enableRotate/enableTilt/enableTranslate properties of lens events spin, tilt, translational control.But the effect was deranged.The result is that the enableRotate attribute controls the translation of the camera, the enableTilt attribute controls the tilt and rotation of the camera, and the enableTranslate attribute does not work.
So I would like to ask what went wrong?

thank you so much!!

2. A minimal code example. If you've found a bug, this helps us reproduce and repair it.

var scene = viewer.scene;
scene.screenSpaceCameraController.enableRotate = false;
scene.screenSpaceCameraController.enableTilt = false;
scene.screenSpaceCameraController.enableTranslate = false;

3. Context. Why do you need to do this? We might know a better way to accomplish your goal.
I want to control the tilt of the camera to a certain extent.

4. The Cesium version you're using, your operating system and browser.
I use the 1.41 version of cesium and the 63.0.3239.84 version of the google chrome browser.

Hi there,

I think the confusion is that these properties are all enabled with true by default, and setting then to false disables them. See a similar answer in this thread.

Thanks,

Gabby