在我開始之前,我應該提到我是一個統一的noob。Unity鍵盤沒有註冊
所以我一直在遵循pong教程,但是我有一個問題。按箭頭時,球拍不會移動。如果你知道如何解決這個問題請讓我知道
我的代碼:
using UnityEngine;
using System.Collections;
public class MoveRacket : MonoBehaviour {
// up and down keys (to be set in the Inspector)
public KeyCode up;
public KeyCode down;
void FixedUpdate() {
// up key pressed?
if (Input.GetKey(up)) {
transform.Translate(new Vector2(0.0f, 0.1f));
}
// down key pressed?
if (Input.GetKey(down)) {
transform.Translate(new Vector2(0.0f, -0.1f));
}
}
}
和控制採摘選項:
你真的從組合框中分配嗎? – 2014-10-11 18:00:11
重複問題#http://stackoverflow.com/questions/26318390/key-input-wont-work-in-unity/26318448?noredirect = 1#comment41302388_26318448 不要問問題兩次......如果你不能找到你的答案,然後等待幾個小時,然後再試一次或在聊天中提問:http://chat.stackoverflow.com/rooms/37624/unity3d-developers – 2014-10-11 19:40:31