teratail header banner
teratail header banner
質問するログイン新規登録

質問編集履歴

1

編集

2019/12/05 10:54

投稿

R-ogiura
R-ogiura

スコア60

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
+ のようにできたのですが、一マスずつ動きません。