質問編集履歴

5

画像を追加しました。

2021/06/12 03:11

投稿

UE4benkyo-
UE4benkyo-

スコア37

test CHANGED
File without changes
test CHANGED
File without changes

4

文章を変更しました。

2021/06/12 03:11

投稿

UE4benkyo-
UE4benkyo-

スコア37

test CHANGED
File without changes
test CHANGED
File without changes

3

文章を変更しました。

2021/06/09 09:52

投稿

UE4benkyo-
UE4benkyo-

スコア37

test CHANGED
File without changes
test CHANGED
@@ -1,4 +1,4 @@
1
- こんばんは。DirectX11のキー入力で離されたときを取得したいのですがなぜか処理が通りません。
1
+ こんにちは。DirectX11のキー入力で離されたときを取得したいのですがなぜか処理が通りません。
2
2
 
3
3
 
4
4
 

2

文章を変更しました。

2021/06/09 02:42

投稿

UE4benkyo-
UE4benkyo-

スコア37

test CHANGED
File without changes
test CHANGED
@@ -9,6 +9,12 @@
9
9
  なんでですかね?
10
10
 
11
11
  wikiを見て書きましたがもし書き方が間違っていたら教えてもらえるとありがたいです。
12
+
13
+
14
+
15
+ wikiのリンクです。
16
+
17
+
12
18
 
13
19
  [リンク内容](https://github.com/microsoft/DirectXTK/wiki/Keyboard)
14
20
 

1

文章を変更しました。

2021/06/07 13:04

投稿

UE4benkyo-
UE4benkyo-

スコア37

test CHANGED
File without changes
test CHANGED
@@ -42,6 +42,12 @@
42
42
 
43
43
 
44
44
 
45
+ ```ここに言語を入力
46
+
47
+ キーの入力処理
48
+
49
+ // 右キーが押されたとき
50
+
45
51
  if (tracker.IsKeyPressed(DirectX::Keyboard::Right))
46
52
 
47
53
  {
@@ -49,6 +55,10 @@
49
55
  mPos.x += 0.01f;
50
56
 
51
57
  }
58
+
59
+
60
+
61
+ // 左キーが押されたとき
52
62
 
53
63
  if (tracker.IsKeyPressed(DirectX::Keyboard::Left))
54
64
 
@@ -60,6 +70,8 @@
60
70
 
61
71
 
62
72
 
73
+ // 下キーが押されたとき
74
+
63
75
  if (tracker.IsKeyPressed(DirectX::Keyboard::Down))
64
76
 
65
77
  {
@@ -68,6 +80,8 @@
68
80
 
69
81
  }
70
82
 
83
+ // 上キーが離されたとき
84
+
71
85
  if (tracker.IsKeyReleased(DirectX::Keyboard::Up))
72
86
 
73
87
  {
@@ -75,3 +89,5 @@
75
89
  mPos.z += 0.01f;
76
90
 
77
91
  }
92
+
93
+ ```