From 8b91100915ed5f508c7e6121f1618842469eb47d Mon Sep 17 00:00:00 2001 From: kpal Date: Thu, 14 Nov 2024 18:12:26 +0000 Subject: [PATCH] removed zoomDist assign in ctor --- scripts/camera/multi-camera.mjs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/scripts/camera/multi-camera.mjs b/scripts/camera/multi-camera.mjs index 2c978a99c1d..61dde36573e 100644 --- a/scripts/camera/multi-camera.mjs +++ b/scripts/camera/multi-camera.mjs @@ -175,8 +175,6 @@ class MultiCamera extends BaseCamera { wheelSpeed, zoomMin, zoomMax, - zoomDistMin, - zoomDistMax, moveSpeed, sprintSpeed, crouchSpeed @@ -186,8 +184,6 @@ class MultiCamera extends BaseCamera { this.wheelSpeed = wheelSpeed ?? this.wheelSpeed; this.zoomMin = zoomMin ?? this.zoomMin; this.zoomMax = zoomMax ?? this.zoomMax; - this.zoomDistMin = zoomDistMin ?? this.zoomDistMin; - this.zoomDistMax = zoomDistMax ?? this.zoomDistMax; this.moveSpeed = moveSpeed ?? this.moveSpeed; this.sprintSpeed = sprintSpeed ?? this.sprintSpeed;