diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2020-05-09 16:05:31 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2020-05-09 16:05:31 +0900 |
| commit | 729db347a269a8f05c7d54ff8f0bfe5f02d747e2 (patch) | |
| tree | b0eb1d3a1adfa9fe62dc01b25fa59462fda722d3 /src/client/scripts | |
| parent | fix(client): Fix bug that cannot set custom texture (diff) | |
| download | sharkey-729db347a269a8f05c7d54ff8f0bfe5f02d747e2.tar.gz sharkey-729db347a269a8f05c7d54ff8f0bfe5f02d747e2.tar.bz2 sharkey-729db347a269a8f05c7d54ff8f0bfe5f02d747e2.zip | |
refactor(client): Remove deprecated property
Diffstat (limited to 'src/client/scripts')
| -rw-r--r-- | src/client/scripts/room/room.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/client/scripts/room/room.ts b/src/client/scripts/room/room.ts index a45fb11e4a..e73a951342 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 : |