Skip to content

Commit

Permalink
Heart
Browse files Browse the repository at this point in the history
Material update
  • Loading branch information
jasonsturges committed Nov 2, 2024
1 parent cc14b25 commit 77b2c81
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/models/shapes/Heart.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,14 @@ class Heart extends Mesh {
bevelThickness: 0,
bevelSize: 0,
});
const material = new MeshStandardMaterial({ color: 0xc62828 });
const material = new MeshStandardMaterial({
color: 0xc62828,
emissive: 0xc61416,
emissiveIntensity: 0.25,
metalness: 0.1,
roughness: 0.3,
flatShading: true,
});

geometry.center();
this.geometry = geometry;
Expand Down

0 comments on commit 77b2c81

Please sign in to comment.