Dialogue system #1

Merged
AmaanSH merged 9 commits from dialogue_system into master 2023-07-08 17:05:59 +02:00
4 changed files with 1 additions and 7 deletions
Showing only changes of commit 94097c2308 - Show all commits

View File

@@ -1,4 +1,3 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
@@ -13,6 +12,6 @@ public class CharacterData : ScriptableObject
public int m_intelligence;
public int m_money;
// Note - the index of the dialogue will control what question it is linked too.
[Header("The index of the dialogue relates to what question it should link too.")]
public List<Dialogue> m_dialogueOptions;
}

View File

@@ -1,6 +1,3 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[System.Serializable]
public class Dialogue

View File

@@ -1,4 +1,3 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

View File

@@ -1,5 +1,4 @@
using System.Collections;
using System.Collections.Generic;
using TMPro;
using UnityEngine;
using UnityEngine.UI;