fix z-fighting in some browsers
This commit is contained in:
parent
1fa5784852
commit
883cdba9f3
|
|
@ -122,7 +122,8 @@ export class SkinObject extends Group {
|
||||||
// this pulls bodyMesh towards the camera
|
// this pulls bodyMesh towards the camera
|
||||||
// so body is given priority over others in z-fighting
|
// so body is given priority over others in z-fighting
|
||||||
polygonOffset: true,
|
polygonOffset: true,
|
||||||
polygonOffsetUnits: -1
|
polygonOffsetUnits: -1,
|
||||||
|
polygonOffsetFactor: -1
|
||||||
}));
|
}));
|
||||||
|
|
||||||
const body2Box = new BoxGeometry(9, 13.5, 4.5, 1, 1, 1);
|
const body2Box = new BoxGeometry(9, 13.5, 4.5, 1, 1, 1);
|
||||||
|
|
@ -138,7 +139,8 @@ export class SkinObject extends Group {
|
||||||
...layer2,
|
...layer2,
|
||||||
// same as above
|
// same as above
|
||||||
polygonOffset: true,
|
polygonOffset: true,
|
||||||
polygonOffsetUnits: -1
|
polygonOffsetUnits: -1,
|
||||||
|
polygonOffsetFactor: -1
|
||||||
}));
|
}));
|
||||||
|
|
||||||
this.body = new BodyPart(bodyMesh, body2Mesh);
|
this.body = new BodyPart(bodyMesh, body2Mesh);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue