https://github.com/bs-community/skinview3d/
Modified version of SkinView3D to remove unnecessary things and make it work on PS3D skins.
Chores |
||
---|---|---|
src | ||
tools | ||
.babelrc | ||
.gitignore | ||
.jshintrc | ||
.npmignore | ||
LICENSE | ||
README.md | ||
package-lock.json | ||
package.json |
README.md
skinview3d
Three.js powered Minecraft skin viewer.
Features
- 1.8 Skins
- HD Skins
- Capes
- Slim arms
Usage
<div id="skin_container"></div>
<script>
let skinViewer = new skinview3d.SkinViewer({
domElement: document.getElementById("skin_container"),
slim: true,
width: 600,
height: 600,
skinUrl: "img/skin.png",
capeUrl: "img/cape.png",
animation: skinview3d.WalkAnimation
});
// change the skin and cape
// skinViewer.skinUrl = "img/skin.png";
// skinViewer.capeUrl = "img/cape.png";
// change the width and height
// skinViewer.width = 300;
// skinViewer.height = 400;
// enable the mouse control feature
let control = new skinview3d.SkinControl(skinViewer);
// pause the animation
// skinViewer.animationPaused = true;
// change the animation speed
// skinViewer.animationSpeed = 8;
// disable the 'right click to play/pause' feature
// control.enableAnimationControl = false;
</script>
Build
npm run build