@@ -101,10 +101,10 @@ Returns a table containing information about the block infront of the turtle or
101
101
102
102
#### ` options ` properties
103
103
104
- | name | type | Description |
105
- | ----- | --------------- | ------------------------------------------------------------------------------------------------ |
106
- | pitch | `number | nil` | Relative pitch degrees, negative means to turn left, positive means to turn right (default: ` 0 ` ) |
107
- | yaw | `number | nil` | Relative yaw degrees, negative means to look up, positive means to look down (default: ` 0 ` ) |
104
+ | name | type | Description | Default |
105
+ | ----- | --------------- | ------------------------------------------------------------------------------------------------ | ------- |
106
+ | pitch | `number | nil` | Relative pitch degrees, negative means to turn left, positive means to turn right | ` 0 ` |
107
+ | yaw | `number | nil` | Relative yaw degrees, negative means to look up, positive means to look down | ` 0 ` |
108
108
109
109
---
110
110
@@ -117,10 +117,10 @@ Returns a table containing information about the entity infront of the turtle or
117
117
118
118
#### ` options ` properties
119
119
120
- | name | type | Description |
121
- | ----- | --------------- | ------------------------------------------------------------------------------------------------ |
122
- | pitch | `number | nil` | Relative pitch degrees, negative means to turn left, positive means to turn right (default: ` 0 ` ) |
123
- | yaw | `number | nil` | Relative yaw degrees, negative means to look up, positive means to look down (default: ` 0 ` ) |
120
+ | name | type | Description | Default |
121
+ | ----- | --------------- | ------------------------------------------------------------------------------------------------ | ------- |
122
+ | pitch | `number | nil` | Relative pitch degrees, negative means to turn left, positive means to turn right | ` 0 ` |
123
+ | yaw | `number | nil` | Relative yaw degrees, negative means to look up, positive means to look down | ` 0 ` |
124
124
125
125
---
126
126
@@ -132,11 +132,11 @@ Tries to dig the block that the turtle is looking at with the current item. It r
132
132
133
133
#### ` options ` properties
134
134
135
- | name | type | Description |
136
- | ----- | --------------- | ------------------------------------------------------------------------------------------------ |
137
- | pitch | `number | nil` | Relative pitch degrees, negative means to turn left, positive means to turn right (default: ` 0 ` ) |
138
- | yaw | `number | nil` | Relative yaw degrees, negative means to look up, positive means to look down (default: ` 0 ` ) |
139
- | sneak | `boolean | nil` | Sneak while digging (default ` false ` ) |
135
+ | name | type | Description | Default |
136
+ | ----- | --------------- | ------------------------------------------------------------------------------------------------ | ------- |
137
+ | pitch | `number | nil` | Relative pitch degrees, negative means to turn left, positive means to turn right | ` 0 ` |
138
+ | yaw | `number | nil` | Relative yaw degrees, negative means to look up, positive means to look down | ` 0 ` |
139
+ | sneak | `boolean | nil` | Sneak while digging (default ` false ` ) | ` false ` |
140
140
141
141
---
142
142
@@ -148,11 +148,11 @@ Tries to interact with the block that the turtle is looking at with the current
148
148
149
149
#### ` options ` properties
150
150
151
- | name | type | Description |
152
- | ----- | --------------- | ------------------------------------------------------------------------------------------------ |
153
- | pitch | `number | nil` | Relative pitch degrees, negative means to turn left, positive means to turn right (default: ` 0 ` ) |
154
- | yaw | `number | nil` | Relative yaw degrees, negative means to look up, positive means to look down (default: ` 0 ` ) |
155
- | sneak | `boolean | nil` | Sneak while using (default ` false ` ) |
151
+ | name | type | Description | Default |
152
+ | ----- | --------------- | ------------------------------------------------------------------------------------------------ | ------- |
153
+ | pitch | `number | nil` | Relative pitch degrees, negative means to turn left, positive means to turn right | ` 0 ` |
154
+ | yaw | `number | nil` | Relative yaw degrees, negative means to look up, positive means to look down | ` 0 ` |
155
+ | sneak | `boolean | nil` | Sneak while using (default ` false ` ) | ` false ` |
156
156
157
157
---
158
158
@@ -164,11 +164,11 @@ Tries to update the text of the sign that the turtle is looking at with the `opt
164
164
165
165
#### ` options ` properties
166
166
167
- | name | type | Description |
168
- | ----- | --------------- | ------------------------------------------------------------------------------------------------ |
169
- | pitch | `number | nil` | Relative pitch degrees, negative means to turn left, positive means to turn right (default: ` 0 ` ) |
170
- | yaw | `number | nil` | Relative yaw degrees, negative means to look up, positive means to look down (default: ` 0 ` ) |
171
- | text | ` string ` | The text to apply to the sign |
167
+ | name | type | Description | Default |
168
+ | ----- | --------------- | ------------------------------------------------------------------------------------------------ | ------- |
169
+ | pitch | `number | nil` | Relative pitch degrees, negative means to turn left, positive means to turn right | ` 0 ` |
170
+ | yaw | `number | nil` | Relative yaw degrees, negative means to look up, positive means to look down | ` 0 ` |
171
+ | text | ` string ` | The text to apply to the sign | |
172
172
173
173
---
174
174
@@ -229,16 +229,16 @@ Returns true if it successfully placed block or nil and an error message.
229
229
230
230
#### ` options ` properties
231
231
232
- | name | type | Description |
233
- | -------- | -------------- | ----------------------------------------------------------------- |
234
- | x | `number | nil` | The x offset relative to the turtle (default: ` 0 ` ) |
235
- | y | `number | nil` | The y offset relative to the turtle (default: ` 0 ` ) |
236
- | z | `number | nil` | The z offset relative to the turtle (default: ` 0 ` ) |
237
- | anchor | `string | nil` | The direction the block should anchor (default: turtle 's forward) |
238
- | front | `string | nil` | The direction the block should facing (default: same as ` anchor ` ) |
239
- | top | `string | nil` | The direction the top of block should facing (default: ` "up" ` ) |
240
- | text | `string | nil` | the text going to write on the sign's front side |
241
- | backText | `string | nil` | the text going to write on the sign's back side |
232
+ | name | type | Description | Default |
233
+ | -------- | -------------- | ----------------------------------------------------------------- | -------------------- |
234
+ | x | `number | nil` | The x offset relative to the turtle | ` 0 ` |
235
+ | y | `number | nil` | The y offset relative to the turtle | ` 0 ` |
236
+ | z | `number | nil` | The z offset relative to the turtle | ` 0 ` |
237
+ | anchor | `string | nil` | The direction the block should anchor | Turtle 's forward |
238
+ | front | `string | nil` | The direction the block should facing | same as ` anchor ` |
239
+ | top | `string | nil` | The direction the top of block should facing | ` "up" ` |
240
+ | text | `string | nil` | the text going to write on the sign's front side | |
241
+ | backText | `string | nil` | the text going to write on the sign's back side | |
242
242
243
243
---
244
244
0 commit comments