https://github.com/bs-community/skinview3d/ Modified version of SkinView3D to remove unnecessary things and make it work on PS3D skins.
Go to file
Hacksore f19557ac75 Update three.js version. Add new lines to end of files and include new misc example 2018-02-05 08:14:42 -06:00
examples Update three.js version. Add new lines to end of files and include new misc example 2018-02-05 08:14:42 -06:00
img Update three.js version. Add new lines to end of files and include new misc example 2018-02-05 08:14:42 -06:00
js Updated to the latest codebase and refactored the folder structure 2018-02-04 16:46:52 -06:00
.gitignore Updated to the latest codebase and refactored the folder structure 2018-02-04 16:46:52 -06:00
LICENSE Updated to the latest codebase and refactored the folder structure 2018-02-04 16:46:52 -06:00
README.md Updated to the latest codebase and refactored the folder structure 2018-02-04 16:46:52 -06:00
index.html Update three.js version. Add new lines to end of files and include new misc example 2018-02-05 08:14:42 -06:00

README.md

skinview3d

Travis npm license

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"
	});

	// 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);

	// disable the 'right click to play/pause' feature
	// control.enableAnimationControl = false;

	skinViewer.animation = new skinview3d.CompositeAnimation();

	// add an animation
	let walk = skinViewer.animation.add(skinview3d.WalkAnimation);

	// set its speed and some others
	walk.speed = 1.5;
	// walk.paused = true;
</script>

Build

npm run build