DragonECS-Unity/src/Internal/EscEditorConsts.cs

10 lines
288 B
C#
Raw Normal View History

2024-03-06 21:37:21 +08:00
namespace DCFApixels.DragonECS.Unity.Editors
2024-03-05 00:46:47 +08:00
{
internal static class EscEditorConsts
{
public const float COMPONENT_DRAWER_ALPHA = 0.26f;
public const float COMPONENT_DRAWER_DESATURATE = 0.86f;
2024-05-15 00:36:56 +08:00
public const int AUTO_COLOR_RAINBOW_MIN_RANGE = 7;
2024-03-05 00:46:47 +08:00
}
}