skinview3d icon indicating copy to clipboard operation
skinview3d copied to clipboard

Additional models such as weapons/armor?

Open 1e4 opened this issue 4 months ago • 2 comments

Hi,

I know there is already an issue posted for armor #110 however I was wondering if there is an easy way to add/attach weapons too so that animations also work correctly? Some akin to

const swordLoader = new GLTFLoader();
swordLoader.load("/sword.glb", (swordGltf) => {
  const handBone = this.model.getObjectByName("RightHand");
  if (handBone) {
    handBone.add(swordGltf.scene);
  }
});

1e4 avatar Aug 19 '25 09:08 1e4

Seems like a good request! if anyone is able to try and make this work would review a PR.

Hacksore avatar Aug 20 '25 14:08 Hacksore

I did add armor rendering to a private repo of skinview3d in feb 2023, perhaps this is a sign to finally create a pull request

Vatten avatar Oct 10 '25 21:10 Vatten