yarn-spinner-runner-ts
Version:
TypeScript parser, compiler, and runtime for Yarn Spinner 3.x with React adapter [NPM package](https://www.npmjs.com/package/yarn-spinner-runner-ts)
25 lines (18 loc) • 569 B
Markdown
## Jump Command (Yarn Spinner)
Source: [docs.yarnspinner.dev — Jump Command](https://docs.yarnspinner.dev/write-yarn-scripts/scripting-fundamentals/jumps)
### What it covers
- **`<<jump NodeTitle>>`**: transfer execution to another node by title.
- Visualized in graph views as an arrow to the target node.
- Works across files; node titles must be unique in the project.
### Example
```yarn
title: Start
Narrator: Proceeding to the next scene.
<<jump NextScene>>
===
title: NextScene
Narrator: We are in the next scene.
===
```