Added New Mods and Profiles Folders

This is a complete rebuild of the modpack, with all new mods and updates for 1.5.3 of Anomaly.
This commit is contained in:
2025-01-14 05:07:53 -05:00
parent 85c665b107
commit 376b4b9689
21217 changed files with 546254 additions and 0 deletions
@@ -0,0 +1,28 @@
#define MARK_ADJUST 1
uniform float4 markswitch_current;
uniform float4 markswitch_count;
int mark_sides()
{
int sides = 1;
while (sides * sides < int(markswitch_count.x))
{
sides += 1;
}
return sides;
}
float2 mark_adjust(float2 pos)
{
int sides = mark_sides();
float d_x = int(markswitch_current.x) % sides;
float d_y = int(markswitch_current.x) / sides;
float p_x = clamp(d_x + pos.x, d_x, d_x + 1) / sides;
float p_y = clamp(d_y + pos.y, d_y, d_y + 1) / sides;
return float2(p_x, p_y);
}