コード例 #1
0
ファイル: UIManager.cs プロジェクト: Zilby/Companion
 /// <summary>
 /// Displays the dialogue.
 /// </summary>
 /// <param name="text">Text.</param>
 public void DisplayDialogue(string text)
 {
     dialogueText.text = text;
     dialogueTextFadeable.SelfFadeIn(dur: 0.2f);
 }
コード例 #2
0
ファイル: UIManager.cs プロジェクト: Zilby/Companion
 /// <summary>
 /// Displays the text.
 /// </summary>
 /// <param name="text">Text.</param>
 public void DisplayText(string text)
 {
     instructionText.text = text;
     instructionTextFadeable.SelfFadeIn();
 }