basically the whole game
This commit is contained in:
parent
949135cecb
commit
96dcfa9064
315 changed files with 34386 additions and 396 deletions
15
Assets/Scripts/Dialogue/DialogueScript.cs
Normal file
15
Assets/Scripts/Dialogue/DialogueScript.cs
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
using UnityEngine;
|
||||
|
||||
[CreateAssetMenu(fileName = "New Dialogue Script", menuName = "Dialogue/Script")]
|
||||
public class DialogueScript : ScriptableObject
|
||||
{
|
||||
[System.Serializable]
|
||||
public class Dialogue
|
||||
{
|
||||
public DialogueCharacter character;
|
||||
public string text;
|
||||
public Sprite cutsceneImage; //only for cutscenes lol
|
||||
}
|
||||
public Dialogue[] dialogueList;
|
||||
public int nextScene;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue