PKHeX/PKHeX.Drawing.PokeSprite/Resources/img
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
..
accents Split PKHeX.Drawing into subprojects 2021-11-27 15:48:08 -08:00
Artwork Items Add support for Indigo Disk (#4111) 2023-12-17 16:41:15 -08:00
Artwork Pokemon Sprites Add support for Indigo Disk (#4111) 2023-12-17 16:41:15 -08:00
ball HOME 2.0.0: Handle conversion behavior & restrictions (#3506) 2022-05-30 21:43:52 -07:00
Big Items Split PKHeX.Drawing into subprojects 2021-11-27 15:48:08 -08:00
Big Pokemon Sprites Wipe transparent pixels in Silvally form sprites 2024-01-02 15:47:06 -08:00
Big Shiny Sprites Update sprites with latest changes 2022-08-02 09:27:46 -04:00
Legends Arceus Shiny Sprites Add all circle Pokémon images; add setting for sprite preference (#3402) 2022-02-05 14:54:01 -08:00
Legends Arceus Sprites Add all circle Pokémon images; add setting for sprite preference (#3402) 2022-02-05 14:54:01 -08:00
Pokemon Sprite Overlays Add white outline to alpha icon 2023-02-06 20:33:22 -06:00
hint.png Remove stray pixels from both Hint/Warn assets 2021-12-18 10:30:16 -05:00
valid.png Split PKHeX.Drawing into subprojects 2021-11-27 15:48:08 -08:00
warn.png Remove stray pixels from both Hint/Warn assets 2021-12-18 10:30:16 -05:00