@mml-io/3d-web-client-core 0.0.0-experimental-dbb6c01-20240611 → 0.0.0-experimental-5a49f55-20240611
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/index.js +9 -9
- package/build/index.js.map +2 -2
- package/package.json +3 -3
package/build/index.js
CHANGED
@@ -239,15 +239,15 @@ var VirtualJoystick = class _VirtualJoystick {
|
|
239
239
|
var camValues = {
|
240
240
|
initialDistance: 3.3,
|
241
241
|
minDistance: 0.1,
|
242
|
-
maxDistance:
|
242
|
+
maxDistance: 5,
|
243
243
|
initialFOV: 60,
|
244
|
-
maxFOV:
|
244
|
+
maxFOV: 70,
|
245
245
|
minFOV: 60,
|
246
246
|
invertFOVMapping: false,
|
247
|
-
damping: 0.
|
248
|
-
dampingScale:
|
249
|
-
zoomScale: 0.
|
250
|
-
zoomDamping: 0.
|
247
|
+
damping: 0.15,
|
248
|
+
dampingScale: 5e-3,
|
249
|
+
zoomScale: 0.088,
|
250
|
+
zoomDamping: 0.16
|
251
251
|
};
|
252
252
|
var camOptions = {
|
253
253
|
initialDistance: { min: 1, max: 5, step: 0.1 },
|
@@ -934,7 +934,7 @@ var _CharacterModel = class _CharacterModel {
|
|
934
934
|
this.config.animationConfig.doubleJumpAnimationFileUrl,
|
935
935
|
6 /* doubleJump */,
|
936
936
|
false,
|
937
|
-
1.
|
937
|
+
1.45
|
938
938
|
);
|
939
939
|
this.applyCustomMaterials();
|
940
940
|
}
|
@@ -1529,7 +1529,7 @@ import { Euler, Line3, Matrix4, Quaternion as Quaternion2, Ray, Raycaster as Ray
|
|
1529
1529
|
|
1530
1530
|
// src/tweakpane/blades/characterControlsFolder.ts
|
1531
1531
|
var characterControllerValues = {
|
1532
|
-
gravity:
|
1532
|
+
gravity: 35.5,
|
1533
1533
|
jumpForce: 18,
|
1534
1534
|
doubleJumpForce: 17.7,
|
1535
1535
|
coyoteJump: 120,
|
@@ -5514,8 +5514,8 @@ var Composer = class {
|
|
5514
5514
|
var _a, _b;
|
5515
5515
|
if (typeof ((_b = (_a = this.environmentConfiguration) == null ? void 0 : _a.ambientLight) == null ? void 0 : _b.intensity) === "number") {
|
5516
5516
|
envValues.ambientLight.ambientLightIntensity = this.environmentConfiguration.ambientLight.intensity;
|
5517
|
-
this.setAmbientLight();
|
5518
5517
|
}
|
5518
|
+
this.setAmbientLight();
|
5519
5519
|
}
|
5520
5520
|
};
|
5521
5521
|
|