internal static void Postfix(CustomizeCarColorsMenuLogic __instance, ColorChanger.ColorType colorType) { CustomizeMenuCompoundData data = __instance.GetComponent <CustomizeMenuCompoundData>(); if (data && Mod.Instance.Config.EnableHexColorInput) { data.ColorType = colorType; __instance.SetThirdActionEnabled(true); __instance.SetThirdAction("EDIT", InternalResources.Constants.INPUT_EDIT_COLOR, data.EditHexClick); } }
internal static void Postfix(CustomizeCarColorsMenuLogic __instance) { CustomizeMenuCompoundData data = __instance.GetComponent <CustomizeMenuCompoundData>(); if (data) { data.ColorType = ColorChanger.ColorType.Size_; __instance.SetThirdActionEnabled(false); __instance.SetThirdAction(string.Empty, InputAction.MenuDoNotUse, null); } }