Example #1
0
    static void PromptText(string[] args)
    {
        actProgress [actIndex] = ActProgress.Started;
        string speaker = "Self";

        if (args.Length > 2)
        {
            speaker = args [2];
        }
        PromptController.cutsceneTextPrompted(null, new TextPromptEventArgs(null, args [1], -1, speaker));
    }
Example #2
0
 public static void EndTextPrompt()
 {
     actProgress [actIndex] = ActProgress.Finished;
     // To clear out text prompt
     PromptController.cutsceneTextPrompted(null, null);
 }