回答編集履歴
1
Vector3になっていたのでVector2に編集しました。
test
CHANGED
@@ -14,6 +14,6 @@
|
|
14
14
|
|
15
15
|
// ↑の1行を ↓こう
|
16
16
|
|
17
|
-
rb.velocity = movement + new Vector
|
17
|
+
rb.velocity = movement + new Vector2(0, rb.velocity.y);
|
18
18
|
|
19
19
|
```
|