This commit is contained in:
Sarah Wolf 2020-04-11 15:16:30 -07:00
Родитель f8ab76a33e
Коммит 9acd15a2ac
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -19,7 +19,7 @@ public class GripperDemoController : MonoBehaviour
Debug.Log(xDrivePostion);
//increment this y position
float targetPosition = xDrivePostion + (float)moveState * Time.fixedDeltaTime * speed;
float targetPosition = xDrivePostion + -(float)moveState * Time.fixedDeltaTime * speed;
//set joint Drive to new position
var drive = articulation.xDrive;