- changed camera so it only moves on a right click

- added sfx to characters talking
- added character sprite to dialogue panel
This commit is contained in:
Amaan Shawkath
2023-07-09 15:57:31 +01:00
parent 5cc04c2a15
commit d023634369
20 changed files with 8103 additions and 2792 deletions

View File

@@ -16,5 +16,6 @@ public class CharacterData : ScriptableObject
[Header("The index of the dialogue relates to what question it should link too.")]
public List<Dialogue> m_dialogueOptions;
public AudioSource m_typingSfx;
public AudioClip m_typingSfx;
public float m_sfxPitch = 1;
}