DaoNiaoShu_Dog/Assets/Third/Chart And Graph/Script/ChartItem/ChartItemMaterialLerpEffect.cs

21 lines
537 B
C#
Raw Normal View History

2025-09-08 14:51:28 +08:00
#define Graph_And_Chart_PRO
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using UnityEngine;
namespace ChartAndGraph
{
/// <summary>
/// lerps the material changes of the chart item. This is used to achive smooth transition between the chart item colors.
/// </summary>
class ChartItemMaterialLerpEffect : MonoBehaviour
{
/// <summary>
/// the speed of the interpolation between the materials
/// </summary>
public float LerpTime = 1f;
}
}