From 729db347a269a8f05c7d54ff8f0bfe5f02d747e2 Mon Sep 17 00:00:00 2001 From: syuilo Date: Sat, 9 May 2020 16:05:31 +0900 Subject: [PATCH] refactor(client): Remove deprecated property --- src/client/scripts/room/room.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/client/scripts/room/room.ts b/src/client/scripts/room/room.ts index a45fb11e4..e73a95134 100644 --- a/src/client/scripts/room/room.ts +++ b/src/client/scripts/room/room.ts @@ -102,7 +102,6 @@ export class Room { this.renderer.autoClear = false; this.renderer.setClearColor(new THREE.Color(0x051f2d)); this.renderer.shadowMap.enabled = this.enableShadow; - this.renderer.gammaOutput = true; this.renderer.shadowMap.type = this.graphicsQuality === 'ultra' ? THREE.PCFSoftShadowMap : this.graphicsQuality === 'high' ? THREE.PCFSoftShadowMap :