Added collision sounds

This commit is contained in:
nothke
2024-08-20 01:12:54 +02:00
parent 5972019352
commit 5f5f43b3cf
10 changed files with 1616 additions and 2 deletions

View File

@@ -0,0 +1,13 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Nothke.Audio
{
[CreateAssetMenu(menuName = "CollisionSoundsProfile", fileName = "CollisionSoundsProfile")]
public class CollisionSoundsProfile : ScriptableObject
{
public AudioClip[] clips;
}
}