※リストが表示されない場合
AddBlockなどの広告ブロックツールがONになっているとリストなどが表示されない場合があります。これらのツールをOFFにしてみてください。
void Update () {
if (Input.GetKey(KeyCode.RightArrow)){
this.transform.Rotate(new Vector3(0, 0, -1f));
}
if (Input.GetKey(KeyCode.LeftArrow)){
this.transform.Rotate(new Vector3(0, 0, 1f));
}
if (Input.GetKey(KeyCode.UpArrow)){
this.transform.Translate(this.transform.up * 0.05f);
}
if (Input.GetKey(KeyCode.DownArrow)){
this.transform.Translate(this.transform.up * -0.05f);
}
}
| << 前へ | 次へ >> |