Ejemplo n.º 1
0
    public void DisplayText()
    {
        var nextStory = story.GetNextStory();

        story                = nextStory;
        storyText.text       = story.GetStoryText();
        storyTextShadow.text = story.GetStoryText();
        StartCoroutine(TextFade());
    }
Ejemplo n.º 2
0
 // Start is called before the first frame update
 void Start()
 {
     story                = startingStory;
     storyText.text       = story.GetStoryText();
     storyTextShadow.text = story.GetStoryText();
 }