PKHeX/PKHeX.Drawing.PokeSprite
Kurt e6ad7c12cd Wipe transparent pixels in Silvally form sprites
Closes #4103
```
	var pixels = System.Runtime.InteropServices.MemoryMarshal.Cast<byte, uint>(data);
	foreach (ref var x in pixels)
	{
		bool isTransparent = (x >> 24) == 0;
		if (isTransparent)
			x = 0; // ensure rgb is zero too
	}
	ImageUtil.GetBitmap(data, w, h).Save(path);
```
2024-01-02 15:47:06 -08:00
..
Builder Update .NET Runtime to .NET 8.0 (#4082) 2023-12-03 20:13:20 -08:00
Properties Add support for Indigo Disk (#4111) 2023-12-17 16:41:15 -08:00
Resources/img Wipe transparent pixels in Silvally form sprites 2024-01-02 15:47:06 -08:00
Util Handle Gold Bottle Cap 31IV bugfix 2023-12-20 11:29:50 -08:00
PKHeX.Drawing.PokeSprite.csproj Update .NET Runtime to .NET 8.0 (#4082) 2023-12-03 20:13:20 -08:00