Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions getting-started/step-3-get-familiarized.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Inside the main directory you'll find some pretty useful files.
| `service-worker.js` | This file defines your service worker, used for asset preloading and caching |
| `.htaccess` | This file provides a basic Apache configuration in case you are using that web server. |

More about what to do and how to use this specific files will come later as you read the documentation.
More about what to do and how to use these specific files will come later as you read the documentation.

**JS Directory**

Expand All @@ -45,10 +45,10 @@ JavaScript is the programming language you'll be using in Monogatari, it is what

| File | Contains |
| :--- | :--- |
| **main.js** | If you want to add more javascript, this is the file to do it! |
| **options.js** | Initial settings of your game and engine settings. |
| **script.js** | The main script of your game. \(Here's where your story, characters, images etc are declared\) |
| **storage.js** | This is where you'll declare your custom variables that you want to save in your games. |
| `main.js` | If you want to add more javascript, this is the file to do it! |
| `options.js` | Initial settings of your game and engine settings. |
| `script.js` | The main script of your game. \(Here's where your story, characters, images etc are declared\) |
| `storage.js` | This is where you'll declare your custom variables that you want to save in your games. |

**Style Directory**

Expand All @@ -58,5 +58,5 @@ CSS is the markup language used to style your game, from setting colors to impro

| File | Contains |
| :--- | :--- |
| **main.css** | Add your styling in this file. |
| `main.css` | Add your styling in this file. |

2 changes: 1 addition & 1 deletion getting-started/step-4-make-your-first-visual-novel.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description: Learn the basic workflow for working on your game

Ok, now you have some idea on [what the files you got are for](step-3-get-familiarized.md) so how can you start developing your game?

1. Try the game first, open the index.html file inside the directory you just unzipped and play the sample game through.
1. Try the game first, open the `index.html` file inside the directory you just unzipped and play the sample game through.
2. Once you've played it once, open the directory \(the one you unzipped\) with the editor you chose to start making changes.
3. Open the `script.js` file with your editor and find the `script` section, as you'll see, all the dialogs you just saw are just a simple list in there. More information can be found in [the documentation](https://monogatari.io/documentation/script/text/).
4. Change one of the dialogs, save the file and reload the game \(just like you reload a website\).
Expand Down