I want to have some time panel on my canvas, which will be updated every second
I can implement it like:
createjs.Ticker.addEventListener("tick", handleTick);
createjs.Ticker.setInterval(1000);
function handleTick(event) {
//update timer
};
than I want to make some animation once ( draw line for example )
what would be the correct way to do it without stopping my timer logic?