Skip to content

Commit

Permalink
wp group additions
Browse files Browse the repository at this point in the history
  • Loading branch information
mysticdrew committed Jul 18, 2024
1 parent d3df4e8 commit b2c9c9b
Showing 1 changed file with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,24 @@ public interface WaypointGroup
*/
void setLocked(boolean locked);

Integer getColor();

void setColor(Integer color);
/**
* Does waypoint group override individual waypoint colors.
*
* @return if override
*/
boolean colorOverride();

/**
* Setting this to true, waypoints will use the group color instead of individual colors.
* Setting to false, waypoints will use their individual colors
*
* @param override to override
*/
void setColorOverride(boolean override);

// ############ ICON ############
/*
* These values do not need to be set if using the default icon.
Expand All @@ -76,6 +94,7 @@ public interface WaypointGroup
* All Icon setters are optional.
*/


/**
* Gets the rotation in degrees the image should be oriented.
* Zero is the default.
Expand Down Expand Up @@ -184,6 +203,7 @@ default void setIconTextureSize(int width, int height)

/**
* Gets the custom data stored on a waypoint group
*
* @return
*/
@Nullable
Expand Down

0 comments on commit b2c9c9b

Please sign in to comment.