I want to change the instruction to my keyboard. Right now I can rotate the 3D Robot-Arm using the hSliderValue. But I want to change it to my keyboard, I want to hit 2 keyboards so I can control the amount of rotation and the side of rotation into my keyboard.
function Update () { amtToMove = controlScript.hSliderValue * Time.deltaTime; if(controlScript.triggerGo == 1){
transform.Rotate(0, controlScript.hSliderValue *Time.deltaTime,0);
}
}
}
Thanks in advance for any advice!