All valid names for sides

This commit is contained in:
Bs0Dd
2022-01-03 15:25:58 +01:00
parent 9b51445a02
commit 96067b0bb1

View File

@@ -14,13 +14,13 @@ This is a high level device. It must be controlled using the high level device A
Device name: `redstone`
### Sides
The side parameter in the following methods represents a side local to the device block. Valid values are: `up`, `down`, `left`, `right`, `front` and `back`.
The side parameter in the following methods represents a side local to the device block. Valid values are: `up`, `down`, `left`, `right`, `front`, `back`, `north`, `south`, `west` and `east`.
Each face of the block has an indicator for convenience. Side names represent the names with the block seen from the primary face (indicated by a single marking). When looking at the primary face:
- `front` is the face we are looking at.
- `back` is the face behind the block.
- `left` is the face to our left.
- `right` is the face to our right.
- `front` and `south` is the face we are looking at.
- `back` and `north` is the face behind the block.
- `left` and `west` is the face to our left.
- `right` and `east` is the face to our right.
- `up` and `down` are the top and bottom faces.
### Methods