質問編集履歴
1
編集
title
CHANGED
File without changes
|
body
CHANGED
@@ -8,4 +8,12 @@
|
|
8
8
|
if (Key[KEY_INPUT_DOWN] == 1)
|
9
9
|
```
|
10
10
|
や
|
11
|
-
ps特有の丸、×、四角、三角の関数はあるのでしょうか。
|
11
|
+
ps特有の丸、×、四角、三角の関数はあるのでしょうか。
|
12
|
+
|
13
|
+
|
14
|
+
編集後
|
15
|
+
Pad = GetJoypadInputState(DX_INPUT_KEY_PAD1); //入力状態をPadに格納
|
16
|
+
if (Pad & PAD_INPUT_RIGHT && playerX < 2) {
|
17
|
+
playerMove = 1; playerX++; playerImage = playerGHandle[2]; nomove = 1;
|
18
|
+
}
|
19
|
+
のようにできたのですが、一マスずつ動きません。
|