using UnityEngine; namespace AllocsFixes { public static class AllocsUtils { public static string ColorToHex (Color _color) { return $"{(int)(_color.r * 255):X02}{(int)(_color.g * 255):X02}{(int)(_color.b * 255):X02}"; } } }