Shader error while using MMDLoader

Using r171

Program Info Log: Vertex shader is not compiled.

  app.mmdLoader.load(
    modelURL,
    (object) => {
      app.currentMesh = object;
      app.scene.add(app.currentMesh);
    },
    (xhr) => {
      console.log((xhr.loaded / xhr.total) * 100 + "% loaded");
    },
    (error) => {
      console.error("Error loading PMX:", error);
    },
  );

Are you trying to load your own MMD model?

At a glance, it looks like the model you are loading doesn’t have any morph targets. :slight_smile:

But perhaps you are trying to use MMDLoader with a version of THREEJS that it wasn’t built against?

3 Likes

Yes @manthrax you are right it was the issue with my model which didn’t have morph targets the other model with morph target worked!

Actually the model which does not have morph targets works when I use r87 also I was trying to migrate to new version but seems like it breaks a lot things.

I think this problem is due to the new version of MMDLoader uses different MMDToonMaterial but older version was using THREE.MeshToonMaterial.

I had modified r87 and files like MMDLoader, MMDPhysics, etc related to MMD to make them support ES Module syntax. I think I will just copy what things I need to update manually to my modified version.

1 Like