import { quat, vec3 } from 'glm'; import { Transform } from '../core/Transform.js'; export class RotateAnimator { constructor(node, { startRotation = [0, 0, 0, 1], endRotation = [0, 0, 0, 1], startTime = 0, duration = 1, loop = false, } = {}) { this.node = node; this.startRotation = startRotation; this.endRotation = endRotation; this.startTime = startTime; this.duration = duration; this.loop = loop; this.playing = true; } play() { this.playing = true; } pause() { this.playing = false; } update(t, dt) { if (!this.playing) { return; } const linearInterpolation = (t - this.startTime) / this.duration; const clampedInterpolation = Math.min(Math.max(linearInterpolation, 0), 1); const loopedInterpolation = ((linearInterpolation % 1) + 1) % 1; this.updateNode(this.loop ? loopedInterpolation : clampedInterpolation); } updateNode(interpolation) { const transform = this.node.getComponentOfType(Transform); if (!transform) { return; } quat.slerp(transform.rotation, this.startRotation, this.endRotation, interpolation); } }