Is it possible to dynamically change the DataSourceClock or Multiplier?

I have a scenario where I would like to update either the DataSourceClock or Multiplier of a Cesium Viewer when particular events are triggered. Is it possible to do this?

You can do this by accessing the viewer’s clockViewModel property. So for example, the following will set the multiplier to twice the regular speed:

viewer.clockViewModel.multiplier = 2;

``

Let me know if that helps!