diff --git a/src/renderer/component/viewers/threeViewer/index.jsx b/src/renderer/component/viewers/threeViewer/index.jsx index b07876d8e..0f4afb433 100644 --- a/src/renderer/component/viewers/threeViewer/index.jsx +++ b/src/renderer/component/viewers/threeViewer/index.jsx @@ -210,7 +210,7 @@ class ThreeViewer extends React.PureComponent { config.color = this.materialColor; // Reset material this.material.color.set(config.color); - this.material.flatShading = false; + this.material.flatShading = true; this.material.shininess = 30; this.material.wireframe = false; // Reset autoRotate @@ -397,7 +397,7 @@ class ThreeViewer extends React.PureComponent { // Create model material this.material = new THREE.MeshPhongMaterial({ depthWrite: true, - flatShading: false, + flatShading: true, vertexColors: THREE.FaceColors, });