Always Skip Lines/AutoMasher
指南
/
Always Skip Lines/AutoMasher
更新时间 1 month ago 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;
            }
        }
游戏统计
粉丝
20
记录
8
玩家
4
最新话题
发布于 8 years ago
3 回复
发布于 9 years ago
1 回复
发布于 9 years ago
0 回复
管理员