mirror of
https://github.com/Doodle3D/Doodle3D-Core.git
synced 2025-01-03 08:33:48 +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);
|
const geometryPlane = new THREE.PlaneGeometry(CANVAS_WIDTH, CANVAS_HEIGHT);
|
||||||
geometryPlane.merge(new THREE.PlaneGeometry(CANVAS_WIDTH, CANVAS_HEIGHT), undefined, 1);
|
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.BackSide, transparent: true, opacity: 0.3 }),
|
||||||
new THREE.MeshBasicMaterial({ color: 0xcccccc, side: THREE.FrontSide, transparent: true, opacity: 0.1 })
|
new THREE.MeshBasicMaterial({ color: 0xcccccc, side: THREE.FrontSide, transparent: true, opacity: 0.1 })
|
||||||
]);
|
];
|
||||||
this.plane = new THREE.Mesh(geometryPlane, materialPlane);
|
this.plane = new THREE.Mesh(geometryPlane, materialPlane);
|
||||||
this.plane.rotation.x = Math.PI / 2;
|
this.plane.rotation.x = Math.PI / 2;
|
||||||
this.plane.position.y = -0.01;
|
this.plane.position.y = -0.01;
|
||||||
|
Loading…
Reference in New Issue
Block a user