Skip to content

Commit

Permalink
docs: update
Browse files Browse the repository at this point in the history
  • Loading branch information
Souma-Sumire committed Mar 18, 2024
1 parent b3d9bd4 commit 731a5a0
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions src/common/markdown/timeline.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,16 @@
- 事件修饰符:你可以在 sync 后面添加 `.once` 修饰符,来确保该正则表达式在整场战斗中仅会被匹配一次,如 `sync.once /正则表达式/`

- window 数字,数字
- 当 sync 匹配成功时,规定匹配同步的时间范围条件
- 第一个数字代表向前的时间范围,第二个数字代表向后的时间范围
- 例如,在:`50 "分支判断" sync /正则表达式/ window 12,5 jump 120`,当正则表达式匹配,且当前战斗时间处于第 38 ~ 55 秒,时间轴会跳转至第 120 秒
- 若 sync 存在,且 window 未设置,默认为 `2.5,2.5`
- 控制 sync 匹配的时间范围,第一个数字代表向前的时间范围,第二个数字代表向后的时间范围
- 例如,在:`50 "同步语句" sync /正则表达式/ window 2,3`,当正则表达式匹配,且当前战斗时间处于第 48 ~ 53 秒内,时间轴会跳转至第 50 秒
- 若不填写,默认为 `2.5,2.5`

- jump 数字
- 当 sync 匹配成功,且符合 window 的判定条件时候,时间轴会跳转至数字时间点(只支持秒数格式的时间)
- 改写时间轴匹配成功时跳转的时间点,当 sync 匹配成功,且符合 window 的判定条件时候,时间轴会跳转至 `jump` 指定的数字时间点
- 只支持秒数格式,如 `120`
- 例如,在:`120 "分支判断" sync /正则表达式/ window 20,5 jump 300`,当正则表达式匹配,且当前战斗时间处于第 100 ~ 125 秒内,时间轴会跳转至第 300 秒
- 跳转至 0 意味着停止时间轴

### 自动匹配规则

使用FFLOGS导入时,会自动生成部分匹配语句,你可以在 [timelineSpecialRules.ts](https://github.com/Souma-Sumire/ff14-overlay-vue/blob/main/src/utils/timelineSpecialRules.ts) 查看全部预置规则

0 comments on commit 731a5a0

Please sign in to comment.