Skip to content

Commit

Permalink
Small updates to the docs structure.
Browse files Browse the repository at this point in the history
  • Loading branch information
stickgrinder committed Nov 2, 2024
1 parent b849f9b commit 839d740
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/src/the-engine-handbook/scripting-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ Popochiu has created a number of singletons to make it easier to work with.

| Singleton | Description |
| :-------: | :---------- |
| C | Provides a quick easy way to access Characters properties and methods. For example ```await C.player.say('Some dialog text')```|
| E | Provides a quick easy way to access Engine properties and methods. For example ```E.goto_room('NewRoom')```|
| R | Provides a quick easy way to access Room properties and methods. For example ```R.get_prop('PropName').hide()```|
| I | Provides a quick easy way to access Inventory properties and methods. For example ```I.PropName.add()```|
| D | Provides a quick easy way to access Dialog properties and methods. For example ```D.DialogChatName.start()```|
| C | Provides a quick easy way to access Characters properties and methods. For example `await C.player.say('Some dialog text')`|
| E | Provides a quick easy way to access Engine properties and methods. For example `E.goto_room('NewRoom')`|
| R | Provides a quick easy way to access Room properties and methods. For example `R.get_prop('PropName').hide()`|
| I | Provides a quick easy way to access Inventory properties and methods. For example `I.PropName.add()`|
| D | Provides a quick easy way to access Dialog properties and methods. For example `D.DialogChatName.start()`|
| A | Provides a quick easy way to access Audio properties and methods.|
| G | Provides a quick easy way to access Graphic Interface properties and methods.|
| Globals | Provides a quick easy way to access variables in the ```res://game/popochiu_globals.gd``` file. |
| Globals | Provides a quick easy way to access variables in the `res://game/popochiu_globals.gd` file. |
| Cursor | Provides a quick easy way to access Cursor properties and methods. |

## Where to write game scripts
Expand Down
4 changes: 4 additions & 0 deletions docs/src/the-engine-handbook/scripting-reference/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
weight: 3100
empty: true
---

0 comments on commit 839d740

Please sign in to comment.