diff options
Diffstat (limited to 'ROUNDS/SoundImplementation/SoundShotModifier.cs')
-rw-r--r-- | ROUNDS/SoundImplementation/SoundShotModifier.cs | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/ROUNDS/SoundImplementation/SoundShotModifier.cs b/ROUNDS/SoundImplementation/SoundShotModifier.cs new file mode 100644 index 0000000..2e6de58 --- /dev/null +++ b/ROUNDS/SoundImplementation/SoundShotModifier.cs @@ -0,0 +1,26 @@ +using System; +using Sonigon; +using UnityEngine; + +namespace SoundImplementation; + +[Serializable] +[CreateAssetMenu(fileName = "_SoundShotModifier", menuName = "Sound Implementation/Sound Shot Modifier", order = 0)] +public class SoundShotModifier : ScriptableObject +{ + [Header("Sound Priority")] + public int priority; + + [Header("Sound Events")] + public SoundEvent single; + + public SoundEvent singleAutoLoop; + + public SoundEvent singleAutoTail; + + public SoundEvent shotgun; + + public SoundEvent shotgunAutoLoop; + + public SoundEvent shotgunAutoTail; +} |