Minor fixes

This commit is contained in:
2026-08-20 18:20:50 +02:00
parent 0461389017
commit 3090ad5e20
4 changed files with 9 additions and 2 deletions
+3 -1
View File
@@ -636,7 +636,9 @@ void ParticleEffect::Draw(RenderContextBatch& renderContextBatch)
void ParticleEffect::OnDebugDrawSelected()
{
DEBUG_DRAW_WIRE_BOX(_box, Color::Violet * 0.7f, 0, true);
auto color = Color::Violet * 0.7f;
DEBUG_DRAW_WIRE_BOX(_box, color, 0, true);
DEBUG_DRAW_WIRE_BOX(_box, color.AlphaMultiplied(0.1f), 0, false);
Actor::OnDebugDrawSelected();
}