From d5c6bc2990a22daddbc37e4245bf42dee2320d36 Mon Sep 17 00:00:00 2001 From: wassname Date: Mon, 26 Nov 2018 06:42:19 +0800 Subject: [PATCH] stronger --- js/walker.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/walker.js b/js/walker.js index e07254e..8ee145f 100644 --- a/js/walker.js +++ b/js/walker.js @@ -312,7 +312,7 @@ Walker.prototype.simulationStep = function (motorSpeeds) { for(var k = 0; k < this.joints.length; k++) { // var oldSpeed = this.joints[k].GetMotorSpeed() // this.joints[k].SetMotorSpeed(oldSpeed + motorSpeeds[k]/10); // action can range from -3 to 3, radians per second - this.joints[k].SetMotorSpeed(motorSpeeds[k]*3); // action can range from -3 to 3, radians per second + this.joints[k].SetMotorSpeed(motorSpeeds[k]*90); // action can range from -3 to 3, radians per second } var oldmax = this.max_distance; var distance = this.torso.upper_torso.GetPosition().x;