Add SFX to dialogue, revamp control scheme (broken world map camera)

This commit is contained in:
2022-08-17 22:12:53 -07:00
parent 294b113598
commit bc8092d454
29 changed files with 1413 additions and 485 deletions

View File

@@ -0,0 +1,9 @@
using UnityEngine;
namespace Scampz.GameJam.Assets.Scripts.Audio
{
public class SFX : MonoBehaviour
{
public AudioClip[] SoundEffects;
}
}