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

View File

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