mirror of
https://github.com/Doodle3D/Doodle3D-Core.git
synced 2024-11-05 06:03:24 +01:00
update multi material
This commit is contained in:
parent
f2c409de0d
commit
a5bc50deb0
@ -96,10 +96,10 @@ class D3Panel extends React.Component {
|
||||
const geometryPlane = new THREE.PlaneGeometry(CANVAS_WIDTH, CANVAS_HEIGHT);
|
||||
geometryPlane.merge(new THREE.PlaneGeometry(CANVAS_WIDTH, CANVAS_HEIGHT), undefined, 1);
|
||||
|
||||
const materialPlane = new THREE.MultiMaterial([
|
||||
const materialPlane = [
|
||||
new THREE.MeshBasicMaterial({ color: 0xcccccc, side: THREE.BackSide, transparent: true, opacity: 0.3 }),
|
||||
new THREE.MeshBasicMaterial({ color: 0xcccccc, side: THREE.FrontSide, transparent: true, opacity: 0.1 })
|
||||
]);
|
||||
];
|
||||
this.plane = new THREE.Mesh(geometryPlane, materialPlane);
|
||||
this.plane.rotation.x = Math.PI / 2;
|
||||
this.plane.position.y = -0.01;
|
||||
|
Loading…
Reference in New Issue
Block a user