34 lines
439 B
TypeScript
34 lines
439 B
TypeScript
export {
|
|
SkinObject,
|
|
BodyPart,
|
|
CapeObject,
|
|
PlayerObject
|
|
} from "./model";
|
|
|
|
export {
|
|
SkinViewer,
|
|
SkinViewerOptions
|
|
} from "./viewer";
|
|
|
|
export {
|
|
OrbitControls,
|
|
createOrbitControls
|
|
} from "./orbit_controls";
|
|
|
|
export {
|
|
IAnimation,
|
|
AnimationFn,
|
|
Animation,
|
|
invokeAnimation,
|
|
AnimationHandle,
|
|
CompositeAnimation,
|
|
|
|
WalkingAnimation,
|
|
RunningAnimation,
|
|
RotatingAnimation
|
|
} from "./animation";
|
|
|
|
export {
|
|
isSlimSkin
|
|
} from "./utils";
|