Add files via upload
This commit is contained in:
parent
82aab308f0
commit
310f5c8838
54 changed files with 2357 additions and 0 deletions
12
Tools/DialogueSystem/Dialogue.cs
Normal file
12
Tools/DialogueSystem/Dialogue.cs
Normal file
|
@ -0,0 +1,12 @@
|
|||
using UnityEngine;
|
||||
|
||||
[CreateAssetMenu(fileName = "New Character", menuName = "Tools/Character", order = 0)]
|
||||
public class Dialogue : ScriptableObject{
|
||||
|
||||
public bool displayName;
|
||||
public string characterName;
|
||||
|
||||
[Space]
|
||||
public Sprite characterImage;
|
||||
[TextArea] public string[] sentences;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue