小仙元的博客I'm creating a maze game and curently i am having delays with my android ... I have lade the computer controls to move front and to turn left and right and to jump using input.getaxis. Now on a...
李趣趣的博客/* C#Keycode对照表 * http://blog.sina.com.cn/s/blog_4553325801018xj0.html 字母和数字键的键码值(keyCode) 按键 键码 按键 键码 按键 键码 按键 键码 A 65 J 74 S 83 1 49 B 66 K 75 T 84 2 50 C 67 L ...
weixin_39890431的博客 // Update is called once per frame void Update () { if (Input.GetKey(KeyCode.W) || Input.GetAxis(KeyCode.Up) ) { //print("W"); transform.Translate(Vector3.up*Time.deltaTime * -MoveSpeed); } if (Input...