Hello GSAP,
Looking for a way to return the actual ticks per second and display on the browser so I know when the animations are getting heavy.
function addListeners () {
TweenMax.ticker.useRAF(false);
TweenMax.ticker.addEventListener("tick", handleTick);
TweenMax.ticker.fps(60);
}
function handleTick(e){
fps.innerHTML = Math.round(TweenMax.ticker.FPS) + " fps";
}