1. A concise explanation of the problem you’re experiencing.
I want to pause my model animation,Even if timeline is still playing
2. A minimal code example. If you’ve found a bug, this helps us reproduce and repair it.
var startTime = Cesium.JulianDate.now();
var animation = model.activeAnimations.add({
name : 'model',
startTime : startTime,
stopTime : Cesium.JulianDate.addSeconds(startTime, 10, new Cesium.JulianDate()),
});
``
I tried this code,It can make the model stop playing after 10 seconds,But I don’t know how to continue playing,What should I do?
3. Context. Why do you need to do this? We might know a better way to accomplish your goal.
4. The Cesium version you’re using, your operating system and browser.