質問編集履歴
6
情報の追加・修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -18,14 +18,16 @@
|
|
18
18
|
|
19
19
|
[b.transform.parent= bulletParent;を外した場合](https://www.youtube.com/watch?v=cLhGiqF3Gcg)
|
20
20
|
|
21
|
+
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
|
26
|
+
|
21
|
-
|
27
|
+
### 該当のソースコード
|
22
28
|
|
23
29
|
```
|
24
30
|
|
25
|
-
|
26
|
-
|
27
|
-
### 該当のソースコード
|
28
|
-
|
29
31
|
using System.Collections;
|
30
32
|
|
31
33
|
using System.Collections.Generic;
|
@@ -103,3 +105,403 @@
|
|
103
105
|
|
104
106
|
|
105
107
|
}
|
108
|
+
|
109
|
+
```
|
110
|
+
|
111
|
+
### 追記
|
112
|
+
|
113
|
+
質問への追記・修正の依頼ありがとうございます。
|
114
|
+
|
115
|
+
このプロジェクトは[StarFox-RailMovement](https://github.com/mixandjam/StarFox-RailMovement)というツールを使用したものとなっています。
|
116
|
+
|
117
|
+
恐らくはmuzzleもPlayerの子にあるため、つまりはPlayerとしての挙動を得てしまっているため、このようなバラバラの挙動になるものと思われます。
|
118
|
+
|
119
|
+
|
120
|
+
|
121
|
+
![イメージ説明](9f8a0b3b6de919743c14f82ec98b1f96.jpeg)
|
122
|
+
|
123
|
+
親の層にある「Player」が、Playerを動かすPlayerMove.csがアタッチされています。
|
124
|
+
|
125
|
+
以下、PlayerMove.csの内容です。
|
126
|
+
|
127
|
+
### PlayerMove.cs
|
128
|
+
|
129
|
+
```
|
130
|
+
|
131
|
+
using System.Collections;
|
132
|
+
|
133
|
+
using System.Collections.Generic;
|
134
|
+
|
135
|
+
using UnityEngine;
|
136
|
+
|
137
|
+
using DG.Tweening;
|
138
|
+
|
139
|
+
using Cinemachine;
|
140
|
+
|
141
|
+
//using UnityEngine.Rendering.PostProcessing;
|
142
|
+
|
143
|
+
|
144
|
+
|
145
|
+
public class PlayerMovement : MonoBehaviour
|
146
|
+
|
147
|
+
{
|
148
|
+
|
149
|
+
private Transform playerModel;
|
150
|
+
|
151
|
+
|
152
|
+
|
153
|
+
[Header("Settings")]
|
154
|
+
|
155
|
+
public bool joystick = true;
|
156
|
+
|
157
|
+
|
158
|
+
|
159
|
+
[Space]
|
160
|
+
|
161
|
+
|
162
|
+
|
163
|
+
[Header("Parameters")]
|
164
|
+
|
165
|
+
public float xySpeed = 18;
|
166
|
+
|
167
|
+
public float lookSpeed = 340;
|
168
|
+
|
169
|
+
public float forwardSpeed = 6;
|
170
|
+
|
171
|
+
|
172
|
+
|
173
|
+
[Space]
|
174
|
+
|
175
|
+
|
176
|
+
|
177
|
+
[Header("Public References")]
|
178
|
+
|
179
|
+
public Transform aimTarget;
|
180
|
+
|
181
|
+
public CinemachineDollyCart dolly;
|
182
|
+
|
183
|
+
public Transform cameraParent;
|
184
|
+
|
185
|
+
|
186
|
+
|
187
|
+
[Space]
|
188
|
+
|
189
|
+
|
190
|
+
|
191
|
+
[Header("Particles")]
|
192
|
+
|
193
|
+
public ParticleSystem trail;
|
194
|
+
|
195
|
+
public ParticleSystem circle;
|
196
|
+
|
197
|
+
public ParticleSystem barrel;
|
198
|
+
|
199
|
+
public ParticleSystem stars;
|
200
|
+
|
201
|
+
|
202
|
+
|
203
|
+
void Start()
|
204
|
+
|
205
|
+
{
|
206
|
+
|
207
|
+
playerModel = transform.GetChild(0);
|
208
|
+
|
209
|
+
SetSpeed(forwardSpeed);
|
210
|
+
|
211
|
+
}
|
212
|
+
|
213
|
+
|
214
|
+
|
215
|
+
void Update()
|
216
|
+
|
217
|
+
{
|
218
|
+
|
219
|
+
float h = joystick ? Input.GetAxis("Horizontal") : Input.GetAxis("Mouse X");
|
220
|
+
|
221
|
+
float v = joystick ? Input.GetAxis("Vertical") : Input.GetAxis("Mouse Y");
|
222
|
+
|
223
|
+
|
224
|
+
|
225
|
+
LocalMove(h, v, xySpeed);
|
226
|
+
|
227
|
+
RotationLook(h,v, lookSpeed);
|
228
|
+
|
229
|
+
HorizontalLean(playerModel, h, 80, .1f);
|
230
|
+
|
231
|
+
|
232
|
+
|
233
|
+
if (Input.GetButtonDown("Action"))
|
234
|
+
|
235
|
+
Boost(true);
|
236
|
+
|
237
|
+
|
238
|
+
|
239
|
+
if (Input.GetButtonUp("Action"))
|
240
|
+
|
241
|
+
Boost(false);
|
242
|
+
|
243
|
+
|
244
|
+
|
245
|
+
if (Input.GetButtonDown("Fire3"))
|
246
|
+
|
247
|
+
Break(true);
|
248
|
+
|
249
|
+
|
250
|
+
|
251
|
+
if (Input.GetButtonUp("Fire3"))
|
252
|
+
|
253
|
+
Break(false);
|
254
|
+
|
255
|
+
|
256
|
+
|
257
|
+
if (Input.GetButtonDown("TriggerL") || Input.GetButtonDown("TriggerR"))
|
258
|
+
|
259
|
+
{
|
260
|
+
|
261
|
+
int dir = Input.GetButtonDown("TriggerL") ? -1 : 1;
|
262
|
+
|
263
|
+
QuickSpin(dir);
|
264
|
+
|
265
|
+
}
|
266
|
+
|
267
|
+
|
268
|
+
|
269
|
+
|
270
|
+
|
271
|
+
}
|
272
|
+
|
273
|
+
|
274
|
+
|
275
|
+
void LocalMove(float x, float y, float speed)
|
276
|
+
|
277
|
+
{
|
278
|
+
|
279
|
+
transform.localPosition += new Vector3(x, y, 0) * speed * Time.deltaTime;
|
280
|
+
|
281
|
+
ClampPosition();
|
282
|
+
|
283
|
+
}
|
284
|
+
|
285
|
+
|
286
|
+
|
287
|
+
void ClampPosition()
|
288
|
+
|
289
|
+
{
|
290
|
+
|
291
|
+
Vector3 pos = Camera.main.WorldToViewportPoint(transform.position);
|
292
|
+
|
293
|
+
pos.x = Mathf.Clamp01(pos.x);
|
294
|
+
|
295
|
+
pos.y = Mathf.Clamp01(pos.y);
|
296
|
+
|
297
|
+
transform.position = Camera.main.ViewportToWorldPoint(pos);
|
298
|
+
|
299
|
+
}
|
300
|
+
|
301
|
+
|
302
|
+
|
303
|
+
void RotationLook(float h, float v, float speed)
|
304
|
+
|
305
|
+
{
|
306
|
+
|
307
|
+
aimTarget.parent.position = Vector3.zero;
|
308
|
+
|
309
|
+
aimTarget.localPosition = new Vector3(h, v, 1);
|
310
|
+
|
311
|
+
transform.rotation = Quaternion.RotateTowards(transform.rotation, Quaternion.LookRotation(aimTarget.position), Mathf.Deg2Rad * speed * Time.deltaTime);
|
312
|
+
|
313
|
+
}
|
314
|
+
|
315
|
+
|
316
|
+
|
317
|
+
void HorizontalLean(Transform target, float axis, float leanLimit, float lerpTime)
|
318
|
+
|
319
|
+
{
|
320
|
+
|
321
|
+
Vector3 targetEulerAngels = target.localEulerAngles;
|
322
|
+
|
323
|
+
target.localEulerAngles = new Vector3(targetEulerAngels.x, targetEulerAngels.y, Mathf.LerpAngle(targetEulerAngels.z, -axis * leanLimit, lerpTime));
|
324
|
+
|
325
|
+
}
|
326
|
+
|
327
|
+
|
328
|
+
|
329
|
+
private void OnDrawGizmos()
|
330
|
+
|
331
|
+
{
|
332
|
+
|
333
|
+
Gizmos.color = Color.blue;
|
334
|
+
|
335
|
+
Gizmos.DrawWireSphere(aimTarget.position, .5f);
|
336
|
+
|
337
|
+
Gizmos.DrawSphere(aimTarget.position, .15f);
|
338
|
+
|
339
|
+
|
340
|
+
|
341
|
+
}
|
342
|
+
|
343
|
+
|
344
|
+
|
345
|
+
public void QuickSpin(int dir)
|
346
|
+
|
347
|
+
{
|
348
|
+
|
349
|
+
if (!DOTween.IsTweening(playerModel))
|
350
|
+
|
351
|
+
{
|
352
|
+
|
353
|
+
playerModel.DOLocalRotate(new Vector3(playerModel.localEulerAngles.x, playerModel.localEulerAngles.y, 360 * -dir), .4f, RotateMode.LocalAxisAdd).SetEase(Ease.OutSine);
|
354
|
+
|
355
|
+
barrel.Play();
|
356
|
+
|
357
|
+
}
|
358
|
+
|
359
|
+
}
|
360
|
+
|
361
|
+
|
362
|
+
|
363
|
+
void SetSpeed(float x)
|
364
|
+
|
365
|
+
{
|
366
|
+
|
367
|
+
dolly.m_Speed = x;
|
368
|
+
|
369
|
+
}
|
370
|
+
|
371
|
+
|
372
|
+
|
373
|
+
void SetCameraZoom(float zoom, float duration)
|
374
|
+
|
375
|
+
{
|
376
|
+
|
377
|
+
cameraParent.DOLocalMove(new Vector3(0, 0, zoom), duration);
|
378
|
+
|
379
|
+
}
|
380
|
+
|
381
|
+
|
382
|
+
|
383
|
+
void DistortionAmount(float x)
|
384
|
+
|
385
|
+
{
|
386
|
+
|
387
|
+
// Camera.main.GetComponent<PostProcessVolume>().profile.GetSetting<LensDistortion>().intensity.value = x;
|
388
|
+
|
389
|
+
}
|
390
|
+
|
391
|
+
|
392
|
+
|
393
|
+
void FieldOfView(float fov)
|
394
|
+
|
395
|
+
{
|
396
|
+
|
397
|
+
cameraParent.GetComponentInChildren<CinemachineVirtualCamera>().m_Lens.FieldOfView = fov;
|
398
|
+
|
399
|
+
}
|
400
|
+
|
401
|
+
|
402
|
+
|
403
|
+
void Chromatic(float x)
|
404
|
+
|
405
|
+
{
|
406
|
+
|
407
|
+
// Camera.main.GetComponent<PostProcessVolume>().profile.GetSetting<ChromaticAberration>().intensity.value = x;
|
408
|
+
|
409
|
+
}
|
410
|
+
|
411
|
+
|
412
|
+
|
413
|
+
|
414
|
+
|
415
|
+
void Boost(bool state)
|
416
|
+
|
417
|
+
{
|
418
|
+
|
419
|
+
|
420
|
+
|
421
|
+
if (state)
|
422
|
+
|
423
|
+
{
|
424
|
+
|
425
|
+
cameraParent.GetComponentInChildren<CinemachineImpulseSource>().GenerateImpulse();
|
426
|
+
|
427
|
+
trail.Play();
|
428
|
+
|
429
|
+
circle.Play();
|
430
|
+
|
431
|
+
}
|
432
|
+
|
433
|
+
else
|
434
|
+
|
435
|
+
{
|
436
|
+
|
437
|
+
trail.Stop();
|
438
|
+
|
439
|
+
circle.Stop();
|
440
|
+
|
441
|
+
}
|
442
|
+
|
443
|
+
trail.GetComponent<TrailRenderer>().emitting = state;
|
444
|
+
|
445
|
+
|
446
|
+
|
447
|
+
float origFov = state ? 40 : 55;
|
448
|
+
|
449
|
+
float endFov = state ? 55 : 40;
|
450
|
+
|
451
|
+
float origChrom = state ? 0 : 1;
|
452
|
+
|
453
|
+
float endChrom = state ? 1 : 0;
|
454
|
+
|
455
|
+
float origDistortion = state ? 0 : -30;
|
456
|
+
|
457
|
+
float endDistorton = state ? -30 : 0;
|
458
|
+
|
459
|
+
float starsVel = state ? -20 : -1;
|
460
|
+
|
461
|
+
float speed = state ? forwardSpeed * 2 : forwardSpeed;
|
462
|
+
|
463
|
+
float zoom = state ? -7 : 0;
|
464
|
+
|
465
|
+
|
466
|
+
|
467
|
+
DOVirtual.Float(origChrom, endChrom, .5f, Chromatic);
|
468
|
+
|
469
|
+
DOVirtual.Float(origFov, endFov, .5f, FieldOfView);
|
470
|
+
|
471
|
+
DOVirtual.Float(origDistortion, endDistorton, .5f, DistortionAmount);
|
472
|
+
|
473
|
+
var pvel = stars.velocityOverLifetime;
|
474
|
+
|
475
|
+
pvel.z = starsVel;
|
476
|
+
|
477
|
+
|
478
|
+
|
479
|
+
DOVirtual.Float(dolly.m_Speed, speed, .15f, SetSpeed);
|
480
|
+
|
481
|
+
SetCameraZoom(zoom, .4f);
|
482
|
+
|
483
|
+
}
|
484
|
+
|
485
|
+
|
486
|
+
|
487
|
+
void Break(bool state)
|
488
|
+
|
489
|
+
{
|
490
|
+
|
491
|
+
float speed = state ? forwardSpeed / 3 : forwardSpeed;
|
492
|
+
|
493
|
+
float zoom = state ? 3 : 0;
|
494
|
+
|
495
|
+
|
496
|
+
|
497
|
+
DOVirtual.Float(dolly.m_Speed, speed, .15f, SetSpeed);
|
498
|
+
|
499
|
+
SetCameraZoom(zoom, .4f);
|
500
|
+
|
501
|
+
}
|
502
|
+
|
503
|
+
}
|
504
|
+
|
505
|
+
|
506
|
+
|
507
|
+
```
|
5
誤字の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
|
4
4
|
|
5
|
-
3Dシューティングゲームを作っているのですが、弾丸を発射
|
5
|
+
3Dシューティングゲームを作っているのですが、弾丸を発射した後、下記の動画のように自機を移動させると、弾も左右に移動してしまいます。
|
6
6
|
|
7
7
|
真っ直ぐ飛ぶようにしたいのですが、ソースコードのb.transform.parent= bulletParent;を外すとPlayerの動きの都合上、大きくマズルがずれてしまいます。
|
8
8
|
|
4
誤字の編集
test
CHANGED
File without changes
|
test
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
|
4
4
|
|
5
|
-
3Dシューティングゲームを作っているのですが、弾丸を発射すると下記の動画のように
|
5
|
+
3Dシューティングゲームを作っているのですが、弾丸を発射すると下記の動画のように自機を左右に移動すると弾も左右に移動してしまいます。
|
6
6
|
|
7
7
|
真っ直ぐ飛ぶようにしたいのですが、ソースコードのb.transform.parent= bulletParent;を外すとPlayerの動きの都合上、大きくマズルがずれてしまいます。
|
8
8
|
|
3
タグの編集
test
CHANGED
File without changes
|
test
CHANGED
File without changes
|
2
文法の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -14,7 +14,7 @@
|
|
14
14
|
|
15
15
|
|
16
16
|
|
17
|
-
[
|
17
|
+
[動画のように、発射した後に左右に自機を動かすと弾も動いてしまう。](https://www.youtube.com/watch?v=Xb0LpWj0OLU)
|
18
18
|
|
19
19
|
[b.transform.parent= bulletParent;を外した場合](https://www.youtube.com/watch?v=cLhGiqF3Gcg)
|
20
20
|
|
1
誤字を訂正
test
CHANGED
File without changes
|
test
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
|
7
7
|
真っ直ぐ飛ぶようにしたいのですが、ソースコードのb.transform.parent= bulletParent;を外すとPlayerの動きの都合上、大きくマズルがずれてしまいます。
|
8
8
|
|
9
|
-
左右への移動を無効にする方法。
|
9
|
+
代替策か、左右への移動を無効にする方法を知りたいです。
|
10
10
|
|
11
11
|
|
12
12
|
|