kumarks102 Hi, I would like to change the animation time at Runtime , is there any possible way. Since we are setting the animation time in the json file, i want to overwrite the time set in json file at runtime. Thanks, Kumar KS.
kumarks102 I want to change both the length and speed of the animation , how to do it ? Where can i get the documentation for the spine corona ?
Søren Check out the properties on TrackEntry in spine-lua https://github.com/EsotericSoftware/spine-runtimes/blob/master/spine-lua/AnimationState.lua#L237 You can do entry = state:setAnimationByName(0, "run", true) entry.timeScale = 0.7f Note the above is pseudo code! The documentation on this site is generic. If you need specifics on spine-lua which spine-corona uses it's best to dig into the API directly.