Fix table of content capitalisation

This commit is contained in:
rubenwardy 2019-08-13 15:09:51 +01:00
parent a38a120833
commit 048ebb2887
3 changed files with 24 additions and 24 deletions

View File

@ -21,12 +21,12 @@ the engine. This results in constant individual copying operations between the
engine and your mod, which is slow and will quickly decrease the performance of engine and your mod, which is slow and will quickly decrease the performance of
your game. Using a Lua Voxel Manipulator (LVM) can be a better alternative. your game. Using a Lua Voxel Manipulator (LVM) can be a better alternative.
- [Concepts](#Concepts) - [Concepts](#concepts)
- [Reading into the LVM](#Reading-into-the-LVM) - [Reading into the LVM](#reading-into-the-lvm)
- [Reading Nodes](#Reading-Nodes) - [Reading Nodes](#reading-nodes)
- [Writing Nodes](#Writing-Nodes) - [Writing Nodes](#writing-nodes)
- [Example](#Example) - [Example](#example)
- [Your Turn](#Your-Turn) - [Your Turn](#your-turn)
## Concepts ## Concepts

View File

@ -16,12 +16,12 @@ degrad:
In this chapter, you will learn how to manipulate objects and how to define your In this chapter, you will learn how to manipulate objects and how to define your
own. own.
- [What are Objects, Players, and Entities?](#What-are-Objects-Players-and-Entities) - [What are Objects, Players, and Entities?](#what-are-objects-players-and-entities)
- [Position and Velocity](#Position-and-Velocity) - [Position and Velocity](#position-and-velocity)
- [Object Properties](#Object-Properties) - [Object Properties](#object-properties)
- [Entities](#Entities) - [Entities](#entities)
- [Attachments](#Attachments) - [Attachments](#attachments)
- [Your Turn](#Your-Turn) - [Your Turn](#your-turn)
## What are Objects, Players, and Entities? ## What are Objects, Players, and Entities?

View File

@ -13,18 +13,18 @@ redirect_from:
In this chapter, you will learn how you can store data. In this chapter, you will learn how you can store data.
- [Metadata](#Metadata) - [Metadata](#metadata)
- [What is Metadata?](#What-is-Metadata) - [What is Metadata?](#what-is-metadata)
- [Obtaining a Metadata Object](#Obtaining-a-Metadata-Object) - [Obtaining a Metadata Object](#obtaining-a-metadata-object)
- [Reading and Writing](#Reading-and-Writing) - [Reading and Writing](#reading-and-writing)
- [Special Keys](#Special-Keys) - [Special Keys](#special-keys)
- [Storing Tables](#Storing-Tables) - [Storing Tables](#storing-tables)
- [Private Metadata](#Private-Metadata) - [Private Metadata](#private-metadata)
- [Lua Tables](#Lua-Tables) - [Lua Tables](#lua-tables)
- [Mod Storage](#Mod-Storage) - [Mod Storage](#mod-storage)
- [Databases](#Databases) - [Databases](#databases)
- [Deciding Which to Use](#Deciding-Which-to-Use) - [Deciding Which to Use](#deciding-which-to-use)
- [Your Turn](#Your-Turn) - [Your Turn](#your-turn)
## Metadata ## Metadata