質問編集履歴

1

文章の具体性を増しました。スクリプトを追加しました。

2020/08/30 08:20

投稿

Hiyo17
Hiyo17

スコア0

test CHANGED
File without changes
test CHANGED
@@ -4,4 +4,80 @@
4
4
 
5
5
  UnityではスタンダードアセットのThirdPersonUserControlを3Dモデルにアタッチすることで移動やジャンプができるようになりますよね。
6
6
 
7
+ そこで質問なのですが、このスクリプトではジャンプ中に移動をすることができません。(ジャンプ中は矢印キーが効かない)
8
+
7
- そこで質問なのですが、このスクリプトではジャンプ中移動をすことがきません。なで、これを書き換えて、ジャンプ中でも移動できるようにしたいですWebサイトで調べても出てこず困っています。方法を教えてください。
9
+ なので、これを書き換えて、ジャンプ中でも移動できようにしたい(3Dマリオのよう感じで、ジャンプ中でも方向移動できるようにしたいですWebサイトで調べても出てこず困っています。方法を教えてください。
10
+
11
+
12
+
13
+ ### 試したこと
14
+
15
+
16
+
17
+ 接地判定に関わっていそうな箇所を消したりしてみたのですが、うまくいきませんでした。
18
+
19
+ スクリプトはアセットストアから無料で入手できる、スタンダードアセットに入っているThirdPersonUserControlとThirdPersonCharacterというスクリプトです。全文は字数の関係で載せられませんでしたが、以下、ThirdPersonCharacter
20
+
21
+ スクリプトの一部を載せておきます。このあたりが怪しいと思うのですが。。。
22
+
23
+
24
+
25
+ ```C#
26
+
27
+ void HandleGroundedMovement(bool crouch, bool jump)
28
+
29
+ {
30
+
31
+ // check whether conditions are right to allow a jump:
32
+
33
+ if (jump && !crouch && m_Animator.GetCurrentAnimatorStateInfo(0).IsName("Grounded"))
34
+
35
+ {
36
+
37
+ // jump!
38
+
39
+ m_Rigidbody.velocity = new Vector3(m_Rigidbody.velocity.x, m_JumpPower, m_Rigidbody.velocity.z);
40
+
41
+ m_IsGrounded = false;
42
+
43
+ m_Animator.applyRootMotion = false;
44
+
45
+ m_GroundCheckDistance = 0.1f;
46
+
47
+ }
48
+
49
+ }
50
+
51
+
52
+
53
+ public void OnAnimatorMove()
54
+
55
+ {
56
+
57
+ // we implement this function to override the default root motion.
58
+
59
+ // this allows us to modify the positional speed before it's applied.
60
+
61
+ //条件無くすとジャンプ中止まる
62
+
63
+ if (m_IsGrounded && Time.deltaTime > 0)
64
+
65
+ {
66
+
67
+ //移動するのに必要な部分!!
68
+
69
+ Vector3 v = (m_Animator.deltaPosition * m_MoveSpeedMultiplier) / Time.deltaTime;
70
+
71
+
72
+
73
+ //we preserve the existing y part of the current velocity.
74
+
75
+ v.y = m_Rigidbody.velocity.y;
76
+
77
+ m_Rigidbody.velocity = v;
78
+
79
+ }
80
+
81
+ }
82
+
83
+ ```