Always Skip Lines/AutoMasher
Guides
/
Always Skip Lines/AutoMasher
Updated 1 month ago by rekitrelt

Edit DialogueSystemSample.exe:

        public void HandleInput(DialogInputState input)
        {
            switch (this.currentState)
            {
            case DialoguePlayer.DialogueState.Stopped:
                break;
            case DialoguePlayer.DialogueState.PlayingBranch:
                if (this.DrawFaded)
                {
                    this.branchPlayer.SkipLines();
                    return;
                }
                this.DrawFaded = true;
                return;
            case DialoguePlayer.DialogueState.Hub:
                this.hubPlayer.HandleInput(input);
                if (this.Engine_IsCancelDown != null && this.Engine_IsCancelDown())
                {
                    this.currentState = DialoguePlayer.DialogueState.Stopped;
                    this.branchPlayer.speechLines.Clear();
                    return;
                }
                break;
            default:
                return;
            }
        }
Game stats
Followers
20
Runs
8
Players
4
Latest threads
Posted 8 years ago
3 replies
Posted 9 years ago
1 reply
Posted 9 years ago
0 replies
Moderators