@awayjs/graphics
Version:
AwayJS graphics classes
17 lines (16 loc) • 511 B
JavaScript
/**
* ...
*/
var ParticleAnimationData = /** @class */ (function () {
function ParticleAnimationData(index, startTime, duration, delay, particle) {
this.index = index;
this.startTime = startTime;
this.totalTime = duration + delay;
this.duration = duration;
this.delay = delay;
this.startVertexIndex = particle.startVertexIndex;
this.numVertices = particle.numVertices;
}
return ParticleAnimationData;
}());
export { ParticleAnimationData };