Skip to content

Commit

Permalink
made the backrooms brighter
Browse files Browse the repository at this point in the history
  • Loading branch information
meszaros-lajos-gyorgy committed May 23, 2024
1 parent 3424bbf commit 2b3c0b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/prefabs/ceilingLight.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export const createCeilingLight = ({ position, radius = 800, isOn = false }: cre
position: position.clone().add(new Vector3(0, 50, 0)),
fallStart: 100,
radius,
intensity: 1.3,
intensity: 1.8,
color: Color.white,
})
// light.exFlicker: toArxColor(toRgba('#1f1f07')),
Expand Down
2 changes: 1 addition & 1 deletion src/rooms/backrooms.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export const createBackrooms = async (
position: origin.clone(),
size: size.clone(),
isLampOn: idx === 0,
lampRadius: Math.max(size.x, size.y, size.z),
lampRadius: Math.max(size.x, size.y, size.z) * 2,
}
})

Expand Down

0 comments on commit 2b3c0b3

Please sign in to comment.