Skip to content

fix: 修复协议空间技能提升无法开始问题#1906

Merged
MistEO merged 2 commits intov2from
fix/2026040305
Apr 3, 2026
Merged

fix: 修复协议空间技能提升无法开始问题#1906
MistEO merged 2 commits intov2from
fix/2026040305

Conversation

@zmdyy0318
Copy link
Copy Markdown
Contributor

@zmdyy0318 zmdyy0318 commented Apr 3, 2026

close #1885

Summary by Sourcery

错误修复:

  • 解决由于 InSpace 管道配置错误导致无法启动协议空间技能增强的问题。
Original summary in English

Summary by Sourcery

Bug Fixes:

  • Resolve an issue where protocol space skill enhancement could not be initiated due to incorrect InSpace pipeline configuration.

Copilot AI review requested due to automatic review settings April 3, 2026 13:58
Copy link
Copy Markdown
Contributor

@sourcery-ai sourcery-ai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

嗨,我已经审查了你的改动,看起来非常棒!


Sourcery 对开源项目是免费的——如果你觉得我们的评审有帮助,请考虑分享它们 ✨
帮我变得更有用!请在每条评论上点 👍 或 👎,我会根据你的反馈改进之后的评审。
Original comment in English

Hey - I've reviewed your changes and they look great!


Sourcery is free for open source - if you like our reviews please consider sharing them ✨
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.

Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

该 PR 针对 Issue #1885 中“协议空间-技能提升”关卡进入后无法找到开始点的问题,调整了进入协议空间后的处理流程,尝试通过“冲刺/位移”来规避低画质下光点与光球重叠导致的识别失败,从而推进到后续的开始交互逻辑。

Changes:

  • 在进入协议空间成功后,新增 3 次“冲刺”尝试节点作为兜底步骤。
  • 移除了原先通过 CharacterControllerPitchDeltaAction 下拉视角的做法,改为通过点击触发冲刺并等待。
  • 为进入成功节点补充显式的 pre_delay / post_delay 字段。

Comment on lines 193 to +199
"ProtocolSpaceIn"
],
"post_delay": 600,
"action": "Click",
"contact": 1,
"next": [
"ProtocolSpaceTouchStartTouch",
Copy link

Copilot AI Apr 3, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

这里用 action: "Click" 且未显式设置 target,根据 schema 默认 target: true 会把右键点击落在本节点识别结果上;而识别仅依赖 ProtocolSpaceIn(左上角撤退按钮模板)。这会导致右键点到 UI 区域,可能不会触发“冲刺/位移”,甚至产生界面交互副作用。建议为冲刺显式指定一个不会命中 UI 的点击目标(如屏幕中央或全屏随机区域),避免依赖 ProtocolSpaceIn 的模板位置。

Copilot uses AI. Check for mistakes.
"ProtocolSpaceIn"
],
"post_delay": 600,
"action": "Click",
Copy link

Copilot AI Apr 3, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

同上:ProtocolSpaceEnterSpaceSprint2 右键点击未设置 target,会默认点击到 ProtocolSpaceIn 的识别位置(撤退按钮区域)。建议显式指定冲刺点击目标到非 UI 区域,避免点击 UI 导致动作不生效。

Suggested change
"action": "Click",
"action": "Click",
"target": [
0,
0,
0,
0
],

Copilot uses AI. Check for mistakes.
],
"post_delay": 600,
"action": "Click",
"contact": 1,
Copy link

Copilot AI Apr 3, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

同上:ProtocolSpaceEnterSpaceSprint3 的右键点击未设置 target,默认会落在 ProtocolSpaceIn 模板(撤退按钮)处。建议显式设置冲刺点击目标到屏幕空白/中央等非 UI 区域,确保“冲刺”动作稳定生效。

Suggested change
"contact": 1,
"contact": 1,
"target": [
0,
0
],

Copilot uses AI. Check for mistakes.
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Copilot reviewed 1 out of 1 changed files in this pull request and generated 3 comments.

@MistEO MistEO merged commit 30d8e6f into v2 Apr 3, 2026
22 checks passed
@MistEO MistEO deleted the fix/2026040305 branch April 3, 2026 14:42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

最新版本协议空间技能提升这张图还是没办法开始战斗

3 participants