Skip to content

Commit a2a5abd

Browse files
committed
Added resetguid and raid docs.
1 parent bd93260 commit a2a5abd

File tree

6 files changed

+63
-0
lines changed

6 files changed

+63
-0
lines changed

docs/marker-dev/attributes/autotrigger.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,5 @@ If enabled, attributes and behaviors which would normally require an interaction
2525
- [Toggle](/docs/marker-dev/attributes/toggle)
2626
- [ShowHide](/docs/marker-dev/attributes/showhide)
2727
- [Achievement](/docs/marker-dev/attributes/achievement)
28+
- [ResetGUID](/docs/marker-dev/attributes/resetguid)
2829

docs/marker-dev/attributes/raid.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
---
2+
id: raid
3+
title: Raid
4+
description: Hides markers and trails based on their associated raid completion status reported by the web API.
5+
hide_table_of_contents: true
6+
---
7+
| Applies To | | Blish HUD (Pathing) | TacO | Burrito |
8+
|-|-|-|-|-|
9+
| <center>Markers, Trails</center> | | <center>✔</center> | <center>❌</center> | <center>❌</center> |
10+
11+
12+
:::info
13+
For this feature to work, the user must have given Blish HUD and the Pathing module permission to access the `account` and `progression` items with an API key.
14+
15+
If the user does not provide an API key or the user has not consented to the `account` and `progression` items, then markers and trails marked with this attribute will not be automatically hidden.
16+
:::
17+
18+
19+
## Description
20+
Hides markers and trails based on their associated raid completion status reported by the web API.
21+
| Attribute | Data Type | Default Value | Example | Description |
22+
|-|-|-|-|-|
23+
| raid | string array | | twisted_castle,xera | The raid IDs this marker or trail will hide for when completed. |
24+
25+
## Supported values
26+
### raid
27+
28+
The `raid` must be a value which matches the ID from Guild Wars 2 Web API raids endpoint.
29+
- API provided list of achievements: https://api.guildwars2.com/v2/raids?ids=all
30+
31+
32+
You can check for completion of an account using the raid progression endpoint:
33+
https://api.guildwars2.com/v2/account/raids?access_token=yourapitokenhere
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
id: resetguid
3+
title: ResetGUID
4+
description: Resets GUID(s) so that another behavior is no longer filtering them.
5+
hide_table_of_contents: true
6+
---
7+
| Applies To | | Blish HUD (Pathing) | TacO | Burrito |
8+
|-|-|-|-|-|
9+
| <center>Markers</center> | | <center>✔</center> | <center>❌</center> | <center>❌</center> |
10+
11+
12+
13+
## Description
14+
Resets GUID(s) so that another behavior is no longer filtering them.
15+
| Attribute | Data Type | Default Value | Example | Description |
16+
|-|-|-|-|-|
17+
| resetguid | string array | | JyxpQMk2qkq/YrA8FauA5A==,diORodyxyECbJ0n56R0emg== | The GUID(s) of the pathing objects to remove from the behavior filter. |
18+
19+
20+
21+
## Affected By
22+
- [AutoTrigger](/docs/marker-dev/attributes/autotrigger)
23+
- [TriggerRange](/docs/marker-dev/attributes/triggerrange)
24+

docs/marker-dev/attributes/triggerrange.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,5 @@ Used to indicate a trigger range. This attribute is used by multiple other attri
2626
- [ShowHide](/docs/marker-dev/attributes/showhide)
2727
- [Toggle](/docs/marker-dev/attributes/toggle)
2828
- [Achievement](/docs/marker-dev/attributes/achievement)
29+
- [ResetGUID](/docs/marker-dev/attributes/resetguid)
2930

docs/marker-dev/development/attributes.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ If you need assistance or would like to provide suggestions for future attribute
3737
| [Occlude](/docs/marker-dev/attributes/occlude) | *Allows a marker to occlude the 3D Pathing elements behind it. If enabled, the marker does not require a texture.* |
3838
| [Profession](/docs/marker-dev/attributes/profession) | *Hides the marker or trail if the player is not currently one of the specified professions.* |
3939
| [Race](/docs/marker-dev/attributes/race) | *Hides the marker or trail if the player is not currently one of the specified races.* |
40+
| [Raid](/docs/marker-dev/attributes/raid) | *Hides markers and trails based on their associated raid completion status reported by the web API.* |
41+
| [ResetGUID](/docs/marker-dev/attributes/resetguid) | *Resets GUID(s) so that another behavior is no longer filtering them.* |
4042
| [Rotate](/docs/marker-dev/attributes/rotate) | *Allows you to statically rotate a marker instead of it automatically facing the player. Value is in degrees. Rotation is applied first to the x axis, then to y, and finally to z.* |
4143
| [Schedule](/docs/marker-dev/attributes/schedule) | *Hides the marker outside of the specified schedule. Good for showing markers only during their associated scheduled meta event, day of the week, etc. All scheduling is based on UTC.* |
4244
| [Script](/docs/marker-dev/attributes/script) | *Allows you to trigger Lua functions or determine if a marker is visible using a Lua function.* |

sidebars.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@ const sidebars = {
6060
"marker-dev/attributes/position",
6161
"marker-dev/attributes/profession",
6262
"marker-dev/attributes/race",
63+
"marker-dev/attributes/raid",
64+
"marker-dev/attributes/resetguid",
6365
"marker-dev/attributes/resetlength",
6466
"marker-dev/attributes/rotate",
6567
"marker-dev/attributes/scaleonmapwithzoom",

0 commit comments

Comments
 (0)