UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

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