mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-16 21:40:41 +00:00
20 lines
659 B
C#
20 lines
659 B
C#
/************************************************/
|
|
/* */
|
|
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
/* https://github.com/monitor1394 */
|
|
/* */
|
|
/************************************************/
|
|
|
|
using UnityEngine;
|
|
|
|
namespace XCharts
|
|
{
|
|
internal static class ThemeHelper
|
|
{
|
|
public static Color32 GetBackgroundColor(ChartTheme theme, Background background)
|
|
{
|
|
if (background.show && background.hideThemeBackgroundColor) return ChartConst.clearColor32;
|
|
else return theme.backgroundColor;
|
|
}
|
|
}
|
|
} |