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.
17 lines • 751 B
JavaScript
/**
* @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 * from "./Model.js";
// Export from skin3d.js - explicitly export the main Render class
export { Render } from "./skin3d.js";
export * from "./skin3d.js";
// Export from Animation.js - explicitly export all animation classes
export { PlayerAnimation, FunctionAnimation, IdleAnimation, WalkingAnimation, RunningAnimation, FlyingAnimation, WaveAnimation, CrouchAnimation, HitAnimation } from "./Animation.js";
export * from "./Animation.js";
// Export from Nametag.js
export * from "./Nametag.js";
//# sourceMappingURL=index.js.map