Always Skip Lines/AutoMasher
Guias
/
Always Skip Lines/AutoMasher
Atualizado 2 months ago por 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;
            }
        }
Estatísticas do jogo
Seguidores
20
Corridas
8
Jogadores
4
Últimos tópicos
Postado 9 years ago
3 respostas
Postado 9 years ago
1 resposta
Postado 9 years ago
0 resposta
Moderadores