Using alpha test instead of transparency in npc models.

This commit is contained in:
Daan Vanden Bosch 2019-07-13 13:43:18 +02:00
parent 8163cd2299
commit ff40ab7264
2 changed files with 3 additions and 3 deletions

View File

@ -40,7 +40,6 @@ function create_mesh(
const materials: Material[] = [
new MeshBasicMaterial({
color,
transparent: true,
}),
];
@ -50,8 +49,8 @@ function create_mesh(
new MeshLambertMaterial({
skinning: true,
map: tex,
transparent: true,
side: DoubleSide,
alphaTest: 0.5,
})
)
);

View File

@ -301,8 +301,8 @@ class ModelViewerStore {
new MeshLambertMaterial({
skinning: true,
map: tex,
transparent: true,
side: DoubleSide,
alphaTest: 0.5,
})
)
);
@ -312,6 +312,7 @@ class ModelViewerStore {
new MeshLambertMaterial({
color: 0xff00ff,
side: DoubleSide,
alphaTest: 0.5,
})
);
}