mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 15:28:29 +08:00
Using alpha test instead of transparency in npc models.
This commit is contained in:
parent
8163cd2299
commit
ff40ab7264
@ -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,
|
||||||
})
|
})
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
@ -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,
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user