UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

14 lines 296 B
/** * @this {View} * @param {number} alpha * @param {number} scale */ export function updateAnimationState(alpha, scale) { this.scale.set(scale, scale); /** * * @type {Element|NodeDescription|null} */ const el = this.el; el.style.opacity = alpha; }