質問編集履歴
1
画像 プログラムコードを追加しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,3 +1,477 @@
|
|
1
1
|
キャラクターがある一定の角度を超えるとすり抜けてしまう現象が起きてしまいます!
|
2
2
|
|
3
3
|
もしよろしければ対処方やコードを教えてもらえると幸いです!
|
4
|
+
|
5
|
+
using System. Collections;
|
6
|
+
|
7
|
+
using System.Collections.Generic;
|
8
|
+
|
9
|
+
using UnityEngine;
|
10
|
+
|
11
|
+
public class situmonyou: MonoBehaviour
|
12
|
+
|
13
|
+
{
|
14
|
+
|
15
|
+
[SerializeField]
|
16
|
+
|
17
|
+
private CapsuleCollider charaCon;
|
18
|
+
|
19
|
+
private Animator animCon; // アニメーションするための変数
|
20
|
+
|
21
|
+
private Vector3 moveDirection; // 移動する方向とベクトル(動く力、速度)の変数(最初は初期化しておく)
|
22
|
+
|
23
|
+
// レイを飛ばす体の位置
|
24
|
+
|
25
|
+
[SerializeField]
|
26
|
+
|
27
|
+
private Transform charaRay;
|
28
|
+
|
29
|
+
// レイの距離
|
30
|
+
|
31
|
+
[SerializeField]
|
32
|
+
|
33
|
+
private float charaRayRange = 0.2f;
|
34
|
+
|
35
|
+
// レイが地面に到達しているかどうか
|
36
|
+
|
37
|
+
private bool isGround;
|
38
|
+
|
39
|
+
// rigidbody
|
40
|
+
|
41
|
+
private Rigidbody rigid;
|
42
|
+
|
43
|
+
private bool isGroundCollider = false;
|
44
|
+
|
45
|
+
// 段差を昇る為のレイを飛ばす位置
|
46
|
+
|
47
|
+
[SerializeField]
|
48
|
+
|
49
|
+
private Transform stepRay;
|
50
|
+
|
51
|
+
// レイを飛ばす距離
|
52
|
+
|
53
|
+
[SerializeField]
|
54
|
+
|
55
|
+
private float stepDistance = 0.5f;
|
56
|
+
|
57
|
+
// 昇れる段差
|
58
|
+
|
59
|
+
[SerializeField]
|
60
|
+
|
61
|
+
private float stepOffset = 0.3f;
|
62
|
+
|
63
|
+
// 昇れる角度
|
64
|
+
|
65
|
+
[SerializeField]
|
66
|
+
|
67
|
+
private float slopeLimit = 65f;
|
68
|
+
|
69
|
+
// 昇れる段差の位置から飛ばすレイの距離
|
70
|
+
|
71
|
+
[SerializeField]
|
72
|
+
|
73
|
+
private float slopeDistance = 1f;
|
74
|
+
|
75
|
+
// ステップアップする力
|
76
|
+
|
77
|
+
[SerializeField]
|
78
|
+
|
79
|
+
private float stepUpPower = 1.5f;
|
80
|
+
|
81
|
+
// ヒットした情報を入れる場所
|
82
|
+
|
83
|
+
private RaycastHit stepHit;
|
84
|
+
|
85
|
+
//public float:インスペクタで調整可能な変数
|
86
|
+
|
87
|
+
[SerializeField]
|
88
|
+
|
89
|
+
private float idoSpeed = 1.5f; // 移動速度
|
90
|
+
|
91
|
+
public float rotateSpeed = 3.0F; // 向きを変える速度
|
92
|
+
|
93
|
+
public float kaitenSpeed = 1200.0f; // プレイヤーの回転速度
|
94
|
+
|
95
|
+
public float gravity = 10.0F; //重力の強さ
|
96
|
+
|
97
|
+
[SerializeField]
|
98
|
+
|
99
|
+
public float jumpPower = 5f; //ジャンプのスピード
|
100
|
+
|
101
|
+
// キャラの回転スピード
|
102
|
+
|
103
|
+
[SerializeField]
|
104
|
+
|
105
|
+
private float charaRotateSpeed = 45f;
|
106
|
+
|
107
|
+
public Vector3 groundNormal = Vector3.zero;
|
108
|
+
|
109
|
+
private Vector3 lastGroundNormal = Vector3.zero;
|
110
|
+
|
111
|
+
[System.NonSerialized]
|
112
|
+
|
113
|
+
public Vector3 lastHitPoint = new Vector3(Mathf.Infinity, 0, 0);
|
114
|
+
|
115
|
+
protected float groundAngle = 0;
|
116
|
+
|
117
|
+
// 地面から離れたとする距離
|
118
|
+
|
119
|
+
public float distanceToTheGround = 2.5f;
|
120
|
+
|
121
|
+
// 着地アニメーションへと変わる距離
|
122
|
+
|
123
|
+
public float distanceToLanding = 2.5f;
|
124
|
+
|
125
|
+
// 地面との距離を計る為のレイを飛ばす位置
|
126
|
+
|
127
|
+
private Transform spine;
|
128
|
+
|
129
|
+
void Start()
|
130
|
+
|
131
|
+
{
|
132
|
+
|
133
|
+
animCon = GetComponent<Animator>(); // アニメーターのコンポーネントを参照する
|
134
|
+
|
135
|
+
moveDirection = Vector3.zero;
|
136
|
+
|
137
|
+
myStatus = GetComponent<MyStatus>();
|
138
|
+
|
139
|
+
spine = animCon.GetBoneTransform(HumanBodyBones.Spine);
|
140
|
+
|
141
|
+
isGround = false;
|
142
|
+
|
143
|
+
rigid = GetComponent<Rigidbody>();
|
144
|
+
|
145
|
+
state = MyState.Normal;
|
146
|
+
|
147
|
+
}
|
148
|
+
|
149
|
+
void Update()
|
150
|
+
|
151
|
+
{
|
152
|
+
|
153
|
+
// ▼▼▼カメラの難しい処理▼▼▼
|
154
|
+
|
155
|
+
var cameraForward = Vector3.Scale(Camera.main.transform.forward, new Vector3(1, 0, 1)).normalized; // カメラが追従するための動作
|
156
|
+
|
157
|
+
Vector3 direction = cameraForward * Input.GetAxis("Vertical") + Camera.main.transform.right * Input.GetAxis("Horizontal");
|
158
|
+
|
159
|
+
|
160
|
+
|
161
|
+
|
162
|
+
|
163
|
+
if (Input.GetAxis("Vertical") == 0 && Input.GetAxis("Horizontal") == 0) // テンキーや3Dスティックの入力(GetAxis)がゼロの時の動作
|
164
|
+
|
165
|
+
{
|
166
|
+
|
167
|
+
}
|
168
|
+
|
169
|
+
else // テンキーや3Dスティックの入力(GetAxis)がゼロではない時の動作
|
170
|
+
|
171
|
+
{
|
172
|
+
|
173
|
+
MukiWoKaeru(direction); // 向きを変える動作の処理を実行する(後述)
|
174
|
+
|
175
|
+
}
|
176
|
+
|
177
|
+
|
178
|
+
|
179
|
+
if (state == MyState.Normal)
|
180
|
+
|
181
|
+
{
|
182
|
+
|
183
|
+
// ▼▼▼落下処理▼▼▼
|
184
|
+
|
185
|
+
if (!isGroundCollider)
|
186
|
+
|
187
|
+
{
|
188
|
+
|
189
|
+
if (Physics.Linecast(charaRay.position, (charaRay.position - transform.up * charaRayRange)))
|
190
|
+
|
191
|
+
{
|
192
|
+
|
193
|
+
isGround = true;
|
194
|
+
|
195
|
+
rigid.useGravity = true;
|
196
|
+
|
197
|
+
}
|
198
|
+
|
199
|
+
else
|
200
|
+
|
201
|
+
{
|
202
|
+
|
203
|
+
isGround = false;
|
204
|
+
|
205
|
+
rigid.useGravity = false;
|
206
|
+
|
207
|
+
}
|
208
|
+
|
209
|
+
Debug.DrawLine(charaRay.position, (charaRay.position - transform.up * charaRayRange), Color.red);
|
210
|
+
|
211
|
+
}
|
212
|
+
|
213
|
+
// キャラクターコライダが接地、またはレイが地面に到達している場合
|
214
|
+
|
215
|
+
if (isGroundCollider || isGround)
|
216
|
+
|
217
|
+
{
|
218
|
+
|
219
|
+
// 地面に接地してる時は初期化
|
220
|
+
|
221
|
+
if (isGroundCollider)
|
222
|
+
|
223
|
+
{
|
224
|
+
|
225
|
+
rigid.useGravity = true;
|
226
|
+
|
227
|
+
moveDirection = Vector3.zero; //Y方向への速度をゼロにする
|
228
|
+
|
229
|
+
moveDirection = direction * idoSpeed; //移動スピードを向いている方向に与える
|
230
|
+
|
231
|
+
animCon.SetBool("Fall", false);
|
232
|
+
|
233
|
+
animCon.SetBool("Jump", false);
|
234
|
+
|
235
|
+
}
|
236
|
+
|
237
|
+
else
|
238
|
+
|
239
|
+
{
|
240
|
+
|
241
|
+
moveDirection = new Vector3(0f, moveDirection.y, 0f);
|
242
|
+
|
243
|
+
}
|
244
|
+
|
245
|
+
|
246
|
+
|
247
|
+
if (moveDirection.magnitude > 0f)
|
248
|
+
|
249
|
+
{
|
250
|
+
|
251
|
+
//着地後移動キーを押したら着地アニメーション終了
|
252
|
+
|
253
|
+
animCon.SetBool("Landing", false);
|
254
|
+
|
255
|
+
animCon.SetFloat("Speed", moveDirection.magnitude);
|
256
|
+
|
257
|
+
transform.LookAt(transform.position + moveDirection);
|
258
|
+
|
259
|
+
Debug.DrawLine(transform.position + new Vector3(0f, stepOffset, 0f), transform.position + new Vector3(0f, stepOffset, 0f) + transform.forward * slopeDistance, Color.green);
|
260
|
+
|
261
|
+
// ステップ用のレイが地面に接触しているかどうか
|
262
|
+
|
263
|
+
if (Physics.Linecast(stepRay.position, stepRay.position + stepRay.forward * stepDistance, out stepHit, LayerMask.GetMask("Field", "Block")))
|
264
|
+
|
265
|
+
{
|
266
|
+
|
267
|
+
// ステップアップ用のレイが地面と接触していない
|
268
|
+
|
269
|
+
if (!Physics.Linecast(transform.position + new Vector3(0f, stepOffset, 0f), transform.position + new Vector3(0f, stepOffset, 0f) + transform.forward * slopeDistance, LayerMask.GetMask("Field", "Block")))
|
270
|
+
|
271
|
+
{
|
272
|
+
|
273
|
+
moveDirection = Vector3.up * stepUpPower + transform.forward * idoSpeed;
|
274
|
+
|
275
|
+
// 接触した地面が登れる坂の角度以下
|
276
|
+
|
277
|
+
}
|
278
|
+
|
279
|
+
else if (Vector3.Angle(transform.up, stepHit.normal) <= slopeLimit)
|
280
|
+
|
281
|
+
{
|
282
|
+
|
283
|
+
moveDirection = Quaternion.FromToRotation(Vector3.up, stepHit.normal) * transform.forward * idoSpeed;
|
284
|
+
|
285
|
+
// それ以外は前進のみ
|
286
|
+
|
287
|
+
}
|
288
|
+
|
289
|
+
else
|
290
|
+
|
291
|
+
{
|
292
|
+
|
293
|
+
moveDirection += transform.forward * idoSpeed;
|
294
|
+
|
295
|
+
}
|
296
|
+
|
297
|
+
|
298
|
+
|
299
|
+
// ステップ用のレイが地面に接触していなければ
|
300
|
+
|
301
|
+
}
|
302
|
+
|
303
|
+
else
|
304
|
+
|
305
|
+
{
|
306
|
+
|
307
|
+
moveDirection += transform.forward * idoSpeed;
|
308
|
+
|
309
|
+
}
|
310
|
+
|
311
|
+
}
|
312
|
+
|
313
|
+
//キーの押しが小さすぎる場合は移動しない
|
314
|
+
|
315
|
+
else
|
316
|
+
|
317
|
+
{
|
318
|
+
|
319
|
+
animCon.SetFloat("Speed", 0f);
|
320
|
+
|
321
|
+
}
|
322
|
+
|
323
|
+
if (Input.GetKeyDown("space") || Input.GetButtonDown("Jump") && !animCon.GetCurrentAnimatorStateInfo(0).IsName("Jump")
|
324
|
+
|
325
|
+
&& !animCon.IsInTransition(0))//Spaceキーorジャンプボタンが押されている場合
|
326
|
+
|
327
|
+
{
|
328
|
+
|
329
|
+
moveDirection.y += jumpPower; //Y方向への速度に「ジャンプパワー」の変数を代入する
|
330
|
+
|
331
|
+
animCon.SetBool("Jump", true);
|
332
|
+
|
333
|
+
rigid.useGravity = false;
|
334
|
+
|
335
|
+
}
|
336
|
+
|
337
|
+
/*else
|
338
|
+
|
339
|
+
{
|
340
|
+
|
341
|
+
// ジャンプキーを押していない時は下向きに力を加える
|
342
|
+
|
343
|
+
moveDirection += addForceDownPower;
|
344
|
+
|
345
|
+
}
|
346
|
+
|
347
|
+
}
|
348
|
+
|
349
|
+
else if (!animCon.GetBool("Fall"))
|
350
|
+
|
351
|
+
{
|
352
|
+
|
353
|
+
Debug.DrawLine(spine.position, spine.position + Vector3.down * distanceToTheGround, Color.red);
|
354
|
+
|
355
|
+
if (!Physics.SphereCast(new Ray(spine.position, Vector3.down), charaCon.radius, distanceToTheGround, LayerMask.GetMask("Field")))
|
356
|
+
|
357
|
+
{
|
358
|
+
|
359
|
+
animCon.SetBool("Fall", true);
|
360
|
+
|
361
|
+
}
|
362
|
+
|
363
|
+
|
364
|
+
|
365
|
+
}
|
366
|
+
|
367
|
+
else if (animCon.GetBool("Fall") || animCon.GetBool("Jump"))
|
368
|
+
|
369
|
+
{
|
370
|
+
|
371
|
+
Debug.DrawLine(spine.position, spine.position + Vector3.down * distanceToLanding, Color.green);
|
372
|
+
|
373
|
+
if (Physics.Linecast(spine.position, spine.position + Vector3.down * distanceToLanding, LayerMask.GetMask("Field")))
|
374
|
+
|
375
|
+
{
|
376
|
+
|
377
|
+
animCon.SetBool("Landing", true);
|
378
|
+
|
379
|
+
}
|
380
|
+
|
381
|
+
}
|
382
|
+
|
383
|
+
|
384
|
+
|
385
|
+
if (!isGroundCollider && !isGround) //CharacterControllerの付いているこのオブジェクトが接地していない場合の処理
|
386
|
+
|
387
|
+
{
|
388
|
+
|
389
|
+
rigid.useGravity = true;
|
390
|
+
|
391
|
+
moveDirection.y += Physics.gravity.y * Time.deltaTime;//マイナスのY方向(下向き)に重力を与える
|
392
|
+
|
393
|
+
if (Input.GetButtonDown("Fire1") && myStatus.GetWeaponStatus() != null
|
394
|
+
|
395
|
+
&& myStatus.GetWeaponStatus().GetWeaponType() == WeaponStatus.WeaponType.Sword)
|
396
|
+
|
397
|
+
{
|
398
|
+
|
399
|
+
animCon.SetBool("JumpAttack", true);
|
400
|
+
|
401
|
+
}
|
402
|
+
|
403
|
+
else
|
404
|
+
|
405
|
+
{
|
406
|
+
|
407
|
+
animCon.SetBool("JumpAttack", false);
|
408
|
+
|
409
|
+
}
|
410
|
+
|
411
|
+
}
|
412
|
+
|
413
|
+
|
414
|
+
|
415
|
+
}
|
416
|
+
|
417
|
+
void FixedUpdate()
|
418
|
+
|
419
|
+
{
|
420
|
+
|
421
|
+
// キャラクターを移動させる処理
|
422
|
+
|
423
|
+
rigid.MovePosition(transform.position + moveDirection * Time.deltaTime);
|
424
|
+
|
425
|
+
}
|
426
|
+
|
427
|
+
void OnCollisionEnter()
|
428
|
+
|
429
|
+
{
|
430
|
+
|
431
|
+
|
432
|
+
|
433
|
+
Debug.DrawLine(charaRay.position, charaRay.position + Vector3.down, Color.blue);
|
434
|
+
|
435
|
+
|
436
|
+
|
437
|
+
// 他のコライダと接触している時は下向きにレイを飛ばしFieldかBlockレイヤーの時だけ接地とする
|
438
|
+
|
439
|
+
if (Physics.Linecast(charaRay.position, charaRay.position + Vector3.down, LayerMask.GetMask("Field", "Block")))
|
440
|
+
|
441
|
+
{
|
442
|
+
|
443
|
+
isGroundCollider = true;
|
444
|
+
|
445
|
+
}
|
446
|
+
|
447
|
+
else
|
448
|
+
|
449
|
+
{
|
450
|
+
|
451
|
+
isGroundCollider = false;
|
452
|
+
|
453
|
+
}
|
454
|
+
|
455
|
+
}
|
456
|
+
|
457
|
+
|
458
|
+
|
459
|
+
// 接触していなければ空中に浮いている状態
|
460
|
+
|
461
|
+
void OnCollisionExit()
|
462
|
+
|
463
|
+
{
|
464
|
+
|
465
|
+
isGroundCollider = false;
|
466
|
+
|
467
|
+
}
|
468
|
+
|
469
|
+
|
470
|
+
|
471
|
+
![イメージ説明](49c8409d65f987e675d2d0e259d60790.png)
|
472
|
+
|
473
|
+
![イメージ説明](32f6bb0e49ce4a20ec4a3551df2cd26f.png)
|
474
|
+
|
475
|
+
![イメージ説明](9e0126a3ac1fa515c33a3009b9ce50f6.png)
|
476
|
+
|
477
|
+
![イメージ説明](14e99175611ce21eb9da43e73be208bd.png)
|