UNPKG

@spearwolf/twopoint5d

Version:

a library to create 2.5d realtime graphics and pixelart with three.js

10 lines 404 B
import { Material } from 'three'; import { VertexObjects } from '../../vertex-objects/VertexObjects.js'; import { AnimatedSpritesGeometry } from './AnimatedSpritesGeometry.js'; export class AnimatedSprites extends VertexObjects { constructor(geometry, material) { super(geometry, material); this.name = 'twopoint5d.AnimatedSprites'; } } //# sourceMappingURL=AnimatedSprites.js.map