Always Skip Lines/AutoMasher
Panduan
/
Always Skip Lines/AutoMasher
Diperbarui 3 months ago oleh 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;
            }
        }
Statistik Game
Pengikut
20
Jalanan
8
Pemain
4
Threads Terbaru
Diposting 9 years ago
3 balasan
Diposting 9 years ago
1 balasan
Diposting 9 years ago
0 balasan
Moderator