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 fe0ab2a74a
Use .all.js in example
Co-authored-by: Shirasawa <764798966@qq.com>
2020-01-01 01:53:19 +08:00
.github/workflows Rename job 2019-09-11 17:12:06 +08:00
examples Use .all.js in example 2020-01-01 01:53:19 +08:00
src Drop namespace THREE, use submodules 2020-01-01 01:43:12 +08:00
test upgrade dependencies 2019-12-26 10:57:27 +08:00
.editorconfig Working transpiling via "npm run buildtest" command 2018-07-20 22:07:52 -05:00
.gitignore Move output to "dist" directory 2018-08-01 21:59:36 +08:00
LICENSE Happy New Year! 2020 2020-01-01 00:11:55 +08:00
README.md Merge branch 'animation-refactor' 2020-01-01 00:34:00 +08:00
karma.conf.js ChromeHeadless was timing out in my development environment so change to ChromeHeadlessNoSandbox 2018-07-29 09:02:49 -05:00
package-lock.json upgrade dependencies 2019-12-26 10:57:27 +08:00
package.json v1.2.0 2019-12-29 12:48:51 +08:00
rollup.config.js New distribution type: .all.js 2020-01-01 01:47:48 +08:00
tsconfig.json upgrade dependencies 2019-12-26 10:57:27 +08:00
tslint.json Drop namespace THREE, use submodules 2020-01-01 01:43:12 +08:00

README.md

skinview3d

npm license Gitter chat

Three.js powered Minecraft skin viewer.

Features

  • 1.8 Skins
  • HD Skins
  • Capes
  • Slim Arms
    • Automatic model detection (Slim / Default)

Usage

Examples of using the viewer

<div id="skin_container"></div>
<script>
	let skinViewer = new skinview3d.SkinViewer({
		domElement: document.getElementById("skin_container"),
		width: 600,
		height: 600,
		skinUrl: "img/skin.png",
		capeUrl: "img/cape.png"
	});

	// Change the textures
	skinViewer.skinUrl = "img/skin2.png";
	skinViewer.capeUrl = "img/cape2.png";

	// Resize the skin viewer
	skinViewer.width = 300;
	skinViewer.height = 400;

	// Control objects with your mouse!
	let control = skinview3d.createOrbitControls(skinViewer);
	control.enableRotate = true;
	control.enableZoom = false;
	control.enablePan = false;

	// Add an animation
	let walk = skinViewer.animations.add(skinview3d.WalkingAnimation);
	// Add another animation
	let rotate = skinViewer.animations.add(skinview3d.RotatingAnimation);
	// Remove an animation, stop walking dude
	walk.remove();
	// Remove the rotating animation, and make the player face forward
	rotate.resetAndRemove();
	// And run for now!
	let run = skinViewer.animations.add(skinview3d.RunningAnimation);

	// Set the speed of an animation
	run.speed = 3;
	// Pause single animation
	run.paused = true;
	// Pause all animations!
	skinViewer.animations.paused = true;
</script>

Build

npm run build