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
+22
View File
@@ -0,0 +1,22 @@
using System.Numerics;
using HSUI.Config;
using HSUI.Config.Attributes;
namespace HSUI.Interface.GeneralElements
{
[Exportable(false)]
public class ShadowConfig : PluginConfigObject
{
[ColorEdit4("Color")]
[Order(5)]
public PluginConfigColor Color = new PluginConfigColor(new Vector4(0f / 255f, 0f / 255f, 0f / 255f, 100f / 100f));
[DragInt("Thickness", min = 1, max = 20)]
[Order(10)]
public int Thickness = 1;
[DragInt("Offset", min = 0, max = 20)]
[Order(15)]
public int Offset = 2;
}
}