UNPKG

@awayjs/graphics

Version:
17 lines (16 loc) 511 B
/** * ... */ 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 };