回答編集履歴

1

Vector3になっていたのでVector2に編集しました。

2020/11/30 06:50

投稿

PinoMatcha
PinoMatcha

スコア368

test CHANGED
@@ -14,6 +14,6 @@
14
14
 
15
15
  // ↑の1行を ↓こう
16
16
 
17
- rb.velocity = movement + new Vector3(0, rb.velocity.y, 0);
17
+ rb.velocity = movement + new Vector2(0, rb.velocity.y);
18
18
 
19
19
  ```