UNPKG

skin3d

Version:

Skin3d is a lightweight JS library that renders any Minecraft skin as a smooth, interactive 3D model you can drop straight into a webpage.

13 lines (12 loc) 531 B
/** * @file index.ts * @description This file serves as the main entry point for the skin3d library, exporting all necessary classes and functions. * @author Cosmic-fi * @license MIT */ export * from "./Model.js"; export { Render } from "./skin3d.js"; export * from "./skin3d.js"; export { PlayerAnimation, FunctionAnimation, IdleAnimation, WalkingAnimation, RunningAnimation, FlyingAnimation, WaveAnimation, CrouchAnimation, HitAnimation } from "./Animation.js"; export * from "./Animation.js"; export * from "./Nametag.js";