Skip to content

Commit

Permalink
Fix paddle powerup color
Browse files Browse the repository at this point in the history
  • Loading branch information
wraitii committed Dec 6, 2023
1 parent 30ba464 commit f5734f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/briqout/BriqoutGraphics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,7 @@ function generatePowerup(item: Powerup) {
}
if (item.kind === 'biggerpaddle') {
const geometry = new THREE.BoxGeometry(40, 10, 10);
const obj = new THREE.Mesh(geometry, new THREE.MeshStandardMaterial({ color: new THREE.Color(0x00ff00).convertSRGBToLinear() }));
const obj = new THREE.Mesh(geometry, new THREE.MeshStandardMaterial({ color: new THREE.Color(0xdd4400).convertSRGBToLinear() }));
obj.castShadow = true;
obj.receiveShadow = true;
return obj;
Expand Down

0 comments on commit f5734f0

Please sign in to comment.