PvP nameplates: correct GC icons (62601/62602/62603), configurable GC IDs, Role/Job icon for enemy players
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -129,6 +129,29 @@ namespace HSUI.Interface.GeneralElements
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Shows Grand Company icon (Maelstrom, Flames, or Adders) on enemy player nameplates in PvP Frontline.</summary>
|
||||
public class NameplateCompanyIconConfig : NameplateIconConfig
|
||||
{
|
||||
[DragInt("Icon ID Team 1 (plateType 4)", min = 0, max = 999999)]
|
||||
[Order(19)]
|
||||
public int IconIdTeam1;
|
||||
|
||||
[DragInt("Icon ID Team 2 (plateType 5)", min = 0, max = 999999)]
|
||||
[Order(20)]
|
||||
public int IconIdTeam2;
|
||||
|
||||
[DragInt("Icon ID Team 3 (plateType 6)", min = 0, max = 999999)]
|
||||
[Order(21)]
|
||||
public int IconIdTeam3;
|
||||
|
||||
public NameplateCompanyIconConfig() : base() { }
|
||||
|
||||
public NameplateCompanyIconConfig(Vector2 position, Vector2 size, DrawAnchor anchor, DrawAnchor frameAnchor)
|
||||
: base(position, size, anchor, frameAnchor)
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
public class NameplateRoleJobIconConfig : RoleJobIconConfig
|
||||
{
|
||||
public NameplateRoleJobIconConfig() : base() { }
|
||||
|
||||
Reference in New Issue
Block a user