-
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #163 from yarn-slinger/book-tweak
Fix missing file
- Loading branch information
Showing
9 changed files
with
33 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,23 @@ | ||
- [Introduction](./introduction.md) | ||
- [Yarn Files](./yarn_files.md) | ||
- [Basics](./yarn_files/basics.md) | ||
- [Running Examples](./yarn_files/running_examples.md) | ||
- [Lines](./yarn_files/lines.md) | ||
- [Variables](./yarn_files/variables.md) | ||
- [Options](./yarn_files/options.md) | ||
- [Nodes](./yarn_files/nodes.md) | ||
- [Markup](./yarn_files/markup.md) | ||
- [Functions](./yarn_files/functions.md) | ||
- [Commands](./yarn_files/commands.md) | ||
- [Bevy Plugin](./bevy_plugin.md) | ||
- [Setup](./bevy_plugin/setup.md) | ||
- [Compiling Yarn Files](./bevy_plugin/compiling_yarn_files.md) | ||
- [`DialogRunner` and a High Level Overview](./bevy_plugin/dialog_runner.md) | ||
- [Localization](./bevy_plugin/localization.md) | ||
- [Assets](./bevy_plugin/assets.md) | ||
- [Variable Storage](./bevy_plugin/variable_storage.md) | ||
- [Custom Functions](./bevy_plugin/custom_functions.md) | ||
- [Custom Commands](./bevy_plugin/custom_commands.md) | ||
- [Dialog Views](./bevy_plugin/dialog_views.md) | ||
- [Working with Yarn Slinger](./working_with_yarn_slinger.md) | ||
- [Yarn Files](./yarn_files.md) | ||
- [Basics](./yarn_files/basics.md) | ||
- [Running Examples](./yarn_files/running_examples.md) | ||
- [Lines](./yarn_files/lines.md) | ||
- [Variables](./yarn_files/variables.md) | ||
- [Options](./yarn_files/options.md) | ||
- [Nodes](./yarn_files/nodes.md) | ||
- [Markup](./yarn_files/markup.md) | ||
- [Functions](./yarn_files/functions.md) | ||
- [Commands](./yarn_files/commands.md) | ||
- [Bevy Plugin](./bevy_plugin.md) | ||
- [Setup](./bevy_plugin/setup.md) | ||
- [Compiling Yarn Files](./bevy_plugin/compiling_yarn_files.md) | ||
- [`DialogRunner` and a High Level Overview](./bevy_plugin/dialog_runner.md) | ||
- [Localization](./bevy_plugin/localization.md) | ||
- [Assets](./bevy_plugin/assets.md) | ||
- [Variable Storage](./bevy_plugin/variable_storage.md) | ||
- [Custom Functions](./bevy_plugin/custom_functions.md) | ||
- [Custom Commands](./bevy_plugin/custom_commands.md) | ||
- [Dialog Views](./bevy_plugin/dialog_views.md) | ||
- [Porting Yarn Slinger](./porting_yarn_slinger.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# Custom Commands | ||
|
||
TODO | ||
TODO (Feel free to [contribute](https://github.com/yarn-slinger/yarn-slinger/edit/main/docs/src/bevy_plugin/custom_commands.md)!) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# Custom Functions | ||
|
||
TODO | ||
TODO (Feel free to [contribute](https://github.com/yarn-slinger/yarn-slinger/edit/main/docs/src/bevy_plugin/custom_functions.md)!) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# Dialog Views | ||
|
||
TODO | ||
TODO (Feel free to [contribute](https://github.com/yarn-slinger/yarn-slinger/edit/main/docs/src/bevy_plugin/dialog_views.md)!) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# Variable Storage | ||
|
||
TODO | ||
TODO (Feel free to [contribute](https://github.com/yarn-slinger/yarn-slinger/edit/main/docs/src/bevy_plugin/variable_storage.md)!) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Working with Yarn Slinger | ||
|
||
Yarn Slinger is a port of the widely used dialogue tool [Yarn Spinner](https://yarnspinner.dev/). | ||
They both share the idea of writing dialog in writer-friendly text files called Yarn files. | ||
We will take a look at how to write these in the next chapter, [Yarn Files](./yarn_files.md). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# Markup | ||
|
||
TODO | ||
TODO (Feel free to [contribute](https://github.com/yarn-slinger/yarn-slinger/edit/main/docs/src/yarn_files/markup.md)!) |