UNPKG

mdx-m3-viewer

Version:

A browser WebGL model viewer. Mainly focused on models of the games Warcraft 3 and Starcraft 2.

14 lines (13 loc) 304 B
import EmittedObject from '../../emittedobject'; /** * A ribbon. */ export default class Ribbon extends EmittedObject { vertices: Float32Array; color: Uint8Array; slot: number; prev: Ribbon | null; next: Ribbon | null; bind(): void; update(dt: number): void; }