From c847530926016ce80ef509709625f47e4d7452a1 Mon Sep 17 00:00:00 2001 From: Cdm2883 Date: Fri, 9 Aug 2024 00:23:49 +0800 Subject: [PATCH] feat: optimize roll damping --- src/three.js | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/three.js b/src/three.js index 41cbea5..ae5f480 100644 --- a/src/three.js +++ b/src/three.js @@ -185,7 +185,15 @@ export default class ThreeViewport { this.motionBlurPass.uniforms.velocity.value.copy(this.velocity); const computedZ = this.currentZ + (this.targetZ - this.currentZ) * this.damping; - if (-17 <= computedZ && computedZ <= 64 * 2 - 60) this.camera.position.z = this.currentZ = computedZ; + // 当接近边界时,应用一个缓动函数来逐渐减速 + if (computedZ < -17) { + this.currentZ += (-17 - this.currentZ) * this.damping; + } else if (computedZ > 64 * 2 - 60) { + this.currentZ += ((64 * 2 - 60) - this.currentZ) * this.damping; + } else { + this.currentZ = computedZ; + } + this.camera.position.z = this.currentZ; this.composer.render(); }