An easy to use Unity 3D library for creating illustrated Interactive Fiction games and more.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

82 lines
1.3 KiB

using UnityEngine;
using UnityEngine.UI;
using System;
using System.Collections;
using System.Collections.Generic;
namespace Fungus.Script
{
[ExecuteInEditMode]
public class SayDialog : Dialog
{
public Image continueImage;
static public List<SayDialog> activeDialogs = new List<SayDialog>();
void OnEnable()
{
if (!activeDialogs.Contains(this))
{
activeDialogs.Add(this);
}
}
void OnDisable()
{
activeDialogs.Remove(this);
}
public void Say(string text, Action onComplete)
{
Clear();
if (storyText != null)
{
storyText.text = text;
}
Action onWritingComplete = delegate {
ShowContinueImage(true);
StartCoroutine(WaitForInput(delegate {
Clear();
if (onComplete != null)
{
onComplete();
}
}));
};
Action onExitTag = delegate {
Clear();
if (onComplete != null)
{
onComplete();
}
};
StartCoroutine(WriteText(text, onWritingComplete, onExitTag));
}
protected override void Clear()
{
base.Clear();
ShowContinueImage(false);
}
protected override void OnWaitForInputTag(bool waiting)
{
ShowContinueImage(waiting);
}
void ShowContinueImage(bool visible)
{
if (continueImage != null)
{
continueImage.enabled = visible;
}
}
}
}