Initial release: HSUI v1.0.0.0 - HUD replacement with configurable hotbars

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-01-30 23:52:46 -05:00
commit f37369cdda
202 changed files with 40137 additions and 0 deletions
@@ -0,0 +1,33 @@
using HSUI.Config;
using HSUI.Config.Attributes;
using HSUI.Enums;
using HSUI.Interface.Bars;
using System.Numerics;
namespace HSUI.Interface.GeneralElements
{
[Section("Other Elements")]
[SubSection("Pull Timer", 0)]
public class PullTimerConfig : ProgressBarConfig
{
[Checkbox("Use Job Color")]
[Order(45)]
public bool UseJobColor = false;
public PullTimerConfig(Vector2 position, Vector2 size, PluginConfigColor fillColor) : base(position, size, fillColor)
{
}
public new static PullTimerConfig DefaultConfig()
{
var config = new PullTimerConfig(
new Vector2(0, HUDConstants.BaseHUDOffsetY - 35),
new Vector2(254, 20),
new PluginConfigColor(new Vector4(233f / 255f, 4f / 255f, 4f / 255f, 100f / 100f)));
config.HideWhenInactive = true;
return config;
}
}
}