Update index.html
Browse files- index.html +2 -2
index.html
CHANGED
@@ -67,8 +67,8 @@
|
|
67 |
},
|
68 |
tick: function() {
|
69 |
this.el.object3D.position.add(this.velocity);
|
70 |
-
if (this.el.object3D.position.y <= -
|
71 |
-
this.el.object3D.position.y = -
|
72 |
this.velocity.set(0, 0, 0); // Stop movement when it hits the ground
|
73 |
}
|
74 |
}
|
|
|
67 |
},
|
68 |
tick: function() {
|
69 |
this.el.object3D.position.add(this.velocity);
|
70 |
+
if (this.el.object3D.position.y <= -3.5) {
|
71 |
+
this.el.object3D.position.y = -3.5; // Accumulate on the ground
|
72 |
this.velocity.set(0, 0, 0); // Stop movement when it hits the ground
|
73 |
}
|
74 |
}
|