Files
tianshu-engine/docs/guide/KEY_MOMENTS.md

32 lines
658 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 关键节点过滤
## 概述
P26 新增。StoryGallery 的章节回顾默认只展示**剧情关键节点**,过滤掉过渡/路由/中间场景。
## 自动判断规则
| 场景类型 | 是否展示 |
|----------|:--:|
| 章节起始场景(`chapters[].startScene` | ✅ |
| 有 `choices` 的分支点 | ✅ |
| 结局场景(`endings[].sceneId` | ✅ |
| QTE 场景 | ❌ |
| 路由/过渡场景 | ❌ |
## 手动覆盖:`keyMoment` 字段
```json
{
"id": "combat_router",
"keyMoment": false,
"nextScene": [...]
}
```
| 值 | 行为 |
|:--:|------|
| `true` | 强制展示 |
| `false` | 强制隐藏 |
| 未设置 | 自动判断 |