UniversalCamera swipe rotation speed on iPhone

Is there a way to change the speed of rotation when using the UniversalCamera on touch (iPhone) devices? According to the docs touchAngularSensibility would change this but I’ve tried setting it high and low and it seems to be the same no matter what.

camera.touchAngularSensibility = 1000;
https://www.babylonjs-playground.com/#QBJ79A#1

camera.touchAngularSensibility = 0.1;
https://www.babylonjs-playground.com/#QBJ79A

Creating some test Playgrounds to test on a phone:

Your test: camera.touchAngularSensibility = 1000;
https://www.babylonjs-playground.com/#QBJ79A#1

Test 1: camera.touchAngularSensibility = 10000;
https://www.babylonjs-playground.com/#QBJ79A#6

Test 2: camera.touchAngularSensibility = 100000;
https://www.babylonjs-playground.com/#QBJ79A#7

Seems like the higher camera.touchAngularSensibility is, the less sensitive.