Three.js powered Minecraft skin viewer.
Three.js powered Minecraft skin viewer.
Example of using skinview3d ```html ```
skinview3d supports FXAA (fast approximate anti-aliasing). To enable it, you need to replace
SkinViewerwith
FXAASkinViewer.
It's recommended to use an opaque background when FXAA is enabled, as transparent background may look buggy.
let skinViewer = new skinview3d.FXAASkinViewer({ // we do not use transparent background, so disable alpha to improve performance alpha: false, ... }); // set the background color skinViewer.renderer.setClearColor(0x5a76f3);
npm run build