From 8eee7dfd088ffa457b039373731a5e15754c6660 Mon Sep 17 00:00:00 2001 From: Mikhail <99481254+DCFApixels@users.noreply.github.com> Date: Sun, 3 Mar 2024 00:39:32 +0800 Subject: [PATCH] change auto color Desaturate multipler --- src/Debug/EcsDebugUtility.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Debug/EcsDebugUtility.cs b/src/Debug/EcsDebugUtility.cs index 077f7fa..9da8d0b 100644 --- a/src/Debug/EcsDebugUtility.cs +++ b/src/Debug/EcsDebugUtility.cs @@ -176,7 +176,7 @@ namespace DCFApixels.DragonECS } private static MetaColor AutoColor(Type type) { - return new MetaColor(type.Name).Desaturate(0.45f) / 1.15f; + return new MetaColor(type.Name).Desaturate(0.75f) / 1.15f; } public static bool TryGetColor(object obj, out MetaColor color) {