You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
319 B
C#
17 lines
319 B
C#
2 weeks ago
|
using TMPro;
|
||
|
using UnityEngine;
|
||
|
using UnityEngine.UI;
|
||
|
|
||
|
[System.Serializable]
|
||
|
public class TWS_DialogueBG_Data
|
||
|
{
|
||
|
public TWS_StoryDialogue_Data dialogueData;
|
||
|
public Sprite dialogueBG;
|
||
|
}
|
||
|
|
||
|
[System.Serializable]
|
||
|
public struct TWS_DialogueBG_Data_UI
|
||
|
{
|
||
|
public TMP_Text dialogue_text;
|
||
|
public Image dialogueBG;
|
||
|
}
|