Multiplier Limit

Hi,

is it possbile block the multiplier?

For example set X30 as superior limit?

Thanks,

Gianmaria

Hello,

You can set viewer.animation.viewModel.defaultTicks to represent the clock multipliers. Something like this may work for you:

viewer.animation.viewModel.defaultTicks = [0.001, 0.002, 0.005, 0.01, 0.02, 0.05, 0.1, 0.25, 0.5, 1.0, 2.0, 5.0, 10.0, 15.0, 30.0];

``

Best,

Hannah

Thanks for your answer.

Using your hint I discovered that the correct method is:

viewer.animation.viewModel.setShuttleRingTicks([0.001, 0.002, 0.005, 0.01, 0.02, 0.05, 0.1, 0.25, 0.5, 1.0, 2.0, 5.0, 10.0, 15.0, 30.0]);

``

as properly explained in the documentation.

Thanks,

Gianmaria