UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

16 lines (14 loc) 284 B
export class BlendSpacePoint { constructor() { /** * Vector in the blend space * @type {number[]} */ this.position = []; /** * * @type {BlendState} */ this.state = null; } }