Skip to content

Commit ffeee5d

Browse files
committed
Added default values for several that were missing them. Also updated the list of accepted values for the mount attribute.
1 parent a2a5abd commit ffeee5d

File tree

8 files changed

+13
-11
lines changed

8 files changed

+13
-11
lines changed

docs/marker-dev/attributes/animspeed.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ Within the Blish HUD Pathing module, users have the option to cap the max speed
1818
The speed in which the texture will move along a trail. By default, this value is 1. A value of 0 disables the trail animation.
1919
| Attribute | Data Type | Default Value | Example | Description |
2020
|-|-|-|-|-|
21-
| animSpeed | float | | 3.7 | The speed that the texture should move along the trail. |
21+
| animSpeed | float | 1 | 3.7 | The speed that the texture should move along the trail. |
2222

2323

docs/marker-dev/attributes/bounce.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ Allows a marker to "bounce" or rise up out of the way when triggered.
1919
| Attribute | Data Type | Default Value | Example | Description |
2020
|-|-|-|-|-|
2121
| bounce | string | | bounce | The bounce behavior mode. |
22-
| bounce-height | float | | 2 | The height of the bounce. |
23-
| bounce-duration | float | | 1.2 | The length of time taken to complete the bounce. |
24-
| bounce-delay | float | | 0 | The amount of time (in seconds) after triggering the bounce that the bounce will begin. |
22+
| bounce-height | float | 2 | 2 | The height of the bounce. |
23+
| bounce-duration | float | 1 | 1.2 | The length of time taken to complete the bounce. |
24+
| bounce-delay | float | 0 | 0 | The amount of time (in seconds) after triggering the bounce that the bounce will begin. |
2525

2626
## Bounce supported values
2727

docs/marker-dev/attributes/copy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Allows you to set a value to the users clipboard. Good for providing waypoints,
1919
| Attribute | Data Type | Default Value | Example | Description |
2020
|-|-|-|-|-|
2121
| copy | string | | [&BOAHAAA=] | The text assigned to the clipboard. |
22-
| copy-message | string | | Jaka Itzel waypoint copied! | The message shown on screen when the copy is activated. |
22+
| copy-message | string | '{0}' copied to clipboard. | Jaka Itzel waypoint copied! | The message shown on screen when the copy is activated. |
2323

2424
## Triggering a copy
2525

docs/marker-dev/attributes/info.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Allows you to show text on screen while the user is in range of the marker.
1515
| Attribute | Data Type | Default Value | Example | Description |
1616
|-|-|-|-|-|
1717
| info | string | | Collect trinkets to complete the heart.
Deliver trinkets: 30%
Rescue pirates: 17% | The text shown on screen when the character is in range. |
18-
| inforange | float | | 14.7 | The distance away that the info text will begin showing on screen. |
18+
| inforange | float | 2 | 14.7 | The distance away that the info text will begin showing on screen. |
1919

2020
:::info Multi-line info
2121
XML's escaped newline `
` is supported and will allow you to show messages which intentionally span multiple lines in the info.

docs/marker-dev/attributes/isseparator.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ hide_table_of_contents: true
1414
Determines if the category should be treated as a separator or "header" instead of a category. Allows you to split up your category menus with section headers which will not show toggles or categories.
1515
| Attribute | Data Type | Default Value | Example | Description |
1616
|-|-|-|-|-|
17-
| isSeparator | bool | | 1 | If enabled, the category entry in the menu will show as a header instead of a toggleable category. |
17+
| isSeparator | bool | 0 | 1 | If enabled, the category entry in the menu will show as a header instead of a toggleable category. |
1818

1919

docs/marker-dev/attributes/mount.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ Hides the marker or trail if the player is not currently riding one of the speci
2626
- rollerbeetle
2727
- warclaw
2828
- skyscale
29+
- skiff
30+
- siegeturtle
2931

3032
This attribute supports providing an array of mounts (values separated by comma) meaning one or more values can be provided. If any of the provided mounts are actively mounted, then the marker or trail is shown.
3133

docs/marker-dev/attributes/position.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ hide_table_of_contents: true
1414
The primary attributes used to determine where to position a marker.
1515
| Attribute | Data Type | Default Value | Example | Description |
1616
|-|-|-|-|-|
17-
| xpos | float | | 31.4 | Defines the x coordinate of the marker. |
18-
| ypos | float | | -147.91 | Defines the y coordinate of the marker. |
19-
| zpos | float | | 223 | Defines the z coordinate of the marker. |
17+
| xpos | float | 0 | 31.4 | Defines the x coordinate of the marker. |
18+
| ypos | float | 0 | -147.91 | Defines the y coordinate of the marker. |
19+
| zpos | float | 0 | 223 | Defines the z coordinate of the marker. |
2020

2121

docs/marker-dev/attributes/resetlength.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ TacO only supports reset lengths as whole integer values whereas Blish HUD's Pat
1818
When using behavior 4 (reappear after timer) this value defines, in seconds, the duration until the marker is reset after being activated.
1919
| Attribute | Data Type | Default Value | Example | Description |
2020
|-|-|-|-|-|
21-
| resetLength | float | | 20.75 | The number of seconds until the marker should reappear. |
21+
| resetLength | float | 0 | 20.75 | The number of seconds until the marker should reappear. |
2222

2323

2424

0 commit comments

Comments
 (0)