1234567891011121314151617181920 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- using TMPro;
- using KairoEngine.Core;
- using KairoEngine.StorySystem;
- namespace KairoEngine.StorySystem.UI
- {
- public class StoryViewText : MonoBehaviour
- {
- public TextMeshProUGUI text;
- public void Setup(StoryStepData storyStep)
- {
- text.text = storyStep.text;
- }
- }
- }
|