mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 22:58: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[] = [
|
||||
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,
|
||||
})
|
||||
)
|
||||
);
|
||||
|
@ -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,
|
||||
})
|
||||
);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user