improved debug color

This commit is contained in:
2025-04-27 15:19:49 +02:00
parent a119e92bf6
commit 202e71d97e

View File

@@ -54,7 +54,7 @@ public class Chunk {
if (toAddElements.Count > 0) { if (toAddElements.Count > 0) {
foreach (Element addElement in toAddElements) { foreach (Element addElement in toAddElements) {
activeElements.Add(addElement); activeElements.Add(addElement);
addElement.SetDebugColor(Colors.Green); addElement.SetDebugColor(addElement.Color * 1.5f);
} }
toAddElements.Clear(); toAddElements.Clear();
} }