Esempio n. 1
0
        public static void SetDialog(String id)
        {
            foreach (DialogChunk chunk in dialogLibrary)
            {
                if (chunk.id == id)
                {
                    currentDialog = chunk;
                    currentDialog.FitToBox();
                }
            }
            if(currentDialog.pause == true)
                Engine.player.state = State.Dialog;

            stage = 0;
            lifeTime = 0;
            animationTime = 0;
            state = BoxState.Appear;
        }
Esempio n. 2
0
        public static void SetCustomDialog(String message)
        {
            currentDialog = new DialogChunk();
            currentDialog.pause = false;
            currentDialog.textList = new List<string>();
            currentDialog.textList.Add(message);
            currentDialog.FitToBox();
            currentDialog.speaker = SpeakerId.OldMan;
            currentDialog.id = "Custom";
            if (currentDialog.pause == true)
                Engine.player.state = State.Dialog;

            stage = 0;
            lifeTime = 0;
            animationTime = 0;
            state = BoxState.Appear;
        }