var TweenData = function (target, key, value, ease, delay, duration, yoyo, hold, repeat, repeatDelay, startAt){ return { target: target, key: key, value: value, ease: ease, duration: 0, totalDuration: 0, delay: 0, yoyo: yoyo, hold: 0, repeat: 0, repeatDelay: 0, startAt: startAt, progress: 0, elapsed: 0, repeatCounter: 0, start: 0, current: 0, end: 0, startCache: 0, endCache: 0, t1: 0, t2: 0, gen: { delay: delay, duration: duration, hold: hold, repeat: repeat, repeatDelay: repeatDelay} , state: 0} ; } ; module.exports = TweenData;