Unityで衝突の強さによって音量を変える

投稿者: | 2020-01-21

Unityで衝突の強さによって音量を変える


衝突したときの音を衝突の強さによって変えてみます。

Sphereのプレハブと音声を用意します。

SphereにはコライダーとRigidbodyがついています。

Planeで段差を作って一番上にCubeを置きました。

Sphereを発射させる位置に空のゲームオブジェクトを起きます。

空のゲームオブジェクトにスクリプトを付けます。

このスクリプトで、Fキーを押すとSphereがCubeに向かって発射されるようにします。

  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4.  
  5. public class ShootScript : MonoBehaviour
  6. {
  7. public GameObject sphere;
  8.  
  9. // Start is called before the first frame update
  10. void Start()
  11. {
  12. }
  13.  
  14. // Update is called once per frame
  15. void Update()
  16. {
  17. if (Input.GetKeyDown(KeyCode.F))
  18. {
  19. Rigidbody rb_sphere = Instantiate(sphere, transform.position, transform.rotation).GetComponent<Rigidbody>();
  20. rb_sphere.AddForce(-transform.right * 30f, ForceMode.Impulse);
  21. }
  22.  
  23. }
  24.  
  25. }

CubeにはコラーダーとRigidbody、Audio Source、新規スクリプトを付けました。

Audio SourceのAudioClipに音声をアタッチして、Play On Awakeのチェックを外します。Spatial Blendのスライダーを3Dにすると、音を受け取るAudio Listenerのついたオブジェクトと音源との距離によって音量が変わるのでまずは2Dにします。

Cubeのスクリプトでは衝突のインパルスのベクトルの長さを調べて、0~1の間の値にして、それをAudioSourceの音量にしています。

  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4.  
  5. public class CubeSoundScript : MonoBehaviour
  6. {
  7. AudioSource audio;
  8.  
  9. // Start is called before the first frame update
  10. void Start()
  11. {
  12. audio = GetComponent<AudioSource>();
  13. }
  14.  
  15. // Update is called once per frame
  16. void Update()
  17. {
  18. }
  19.  
  20. private void OnCollisionEnter(Collision collision)
  21. {
  22. float i = collision.impulse.magnitude / 15f;
  23. if (i > 1) i = 1;
  24. audio.volume = i;
  25. audio.Play();
  26.  
  27. Debug.Log(collision.impulse.magnitude + " " + audio.volume);
  28. }
  29. }

collision.impulse が衝突のインパルスで、magnitudeでそのベクトルの長さが返ります。0~1の値になるように、適当な値で割っています。
音量を変更するには、AudioSource.volume に0~1のfloat値を入れます。

衝突のインパルスのベクトルの長さと音量をコンソールに表示させています。

Cubeの衝突の強さによって音量が変わっています。

CubeのAudio SourceコンポーネントのSpatial Blendを3Dにしてみます。

メインカメラがCubeから離れている分聞こえにくいですが、衝突によって音量が変わっているのがわかると思います。

コメントを残す

メールアドレスが公開されることはありません。