diff --git a/docs/src/the-engine-handbook/scripting-overview.md b/docs/src/the-engine-handbook/scripting-overview.md index db22485b..4c45a41f 100644 --- a/docs/src/the-engine-handbook/scripting-overview.md +++ b/docs/src/the-engine-handbook/scripting-overview.md @@ -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 diff --git a/docs/src/the-engine-handbook/scripting-reference/index.md b/docs/src/the-engine-handbook/scripting-reference/index.md new file mode 100644 index 00000000..aab893cd --- /dev/null +++ b/docs/src/the-engine-handbook/scripting-reference/index.md @@ -0,0 +1,4 @@ +--- +weight: 3100 +empty: true +---