Made the fans be annimated

This commit is contained in:
2026-04-11 14:15:12 +01:00
parent e90628c288
commit 75565f040e
7 changed files with 146 additions and 1 deletions

View File

@@ -32,7 +32,10 @@ namespace Fruitomation.UI
{
int srcW = source.width;
int srcH = source.height;
Texture2D result = new(srcW * cols, srcH * rows);
Texture2D result = new(srcW * cols, srcH * rows)
{
filterMode = FilterMode.Point
};
Color[] srcPixels = source.GetPixels();