feat: optimize roll damping
This commit is contained in:
parent
9681dfa06b
commit
c847530926
10
src/three.js
10
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();
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user