https://github.com/bs-community/skinview3d/ Modified version of SkinView3D to remove unnecessary things and make it work on PS3D skins.
Go to file
yushijinhun fcffa13a6f
refactor
2017-08-30 20:32:15 +08:00
img support slim model 2017-08-30 20:26:04 +08:00
js refactor 2017-08-30 20:32:15 +08:00
LICENSE add license 2017-08-29 19:51:12 +08:00
README.md support slim model 2017-08-30 20:26:04 +08:00
example.html support slim model 2017-08-30 20:26:04 +08:00

README.md

skinpreview3d.js

This is a Three.js powered Minecraft skin renderer packaged as a jQuery plugin.

The code was originally created by Kent Rasmussen. You can find out more about his project here.

Features

  • 1.8 Skins
  • Capes
  • Slim arms

Dependencies

Usage

HTML

<div id="skin_container"></div>

JS

$(() => {
	$("#skin_container").skinPreview3D({
		skinUrl: 'img/hatsune_miku.png',
		capeUrl: 'img/cape.png',
		slim: true,
		width: 600,
		height: 600
	});
});