From 6d99c448ab63af3d2db0af6502c84618f39e9051 Mon Sep 17 00:00:00 2001 From: miku-666 <74728189+NessieHax@users.noreply.github.com> Date: Wed, 10 Dec 2025 07:31:14 +0100 Subject: [PATCH] PckStudio(TextureAtlasEditor) - Fix Blend color not applying correctly on some tiles --- PCK-Studio/Forms/Editor/TextureAtlasEditor.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/PCK-Studio/Forms/Editor/TextureAtlasEditor.cs b/PCK-Studio/Forms/Editor/TextureAtlasEditor.cs index 6aea5ff0..01c78488 100644 --- a/PCK-Studio/Forms/Editor/TextureAtlasEditor.cs +++ b/PCK-Studio/Forms/Editor/TextureAtlasEditor.cs @@ -187,6 +187,7 @@ namespace PckStudio.Forms.Editor if (playAnimationsToolStripMenuItem.Checked && hasAnimation) { + selectTilePictureBox.UseBlendColor = false; selectTilePictureBox.Image = animation.CreateAnimationImage(selectTilePictureBox.BlendColor); selectTilePictureBox.Start(); return; @@ -233,7 +234,7 @@ namespace PckStudio.Forms.Editor if (selectTilePictureBox.IsPlaying) selectTilePictureBox.Stop(); - selectTilePictureBox.UseBlendColor = false; + selectTilePictureBox.UseBlendColor = true; selectTilePictureBox.Image = null; }