21 lines
537 B
C#
21 lines
537 B
C#
#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;
|
|
}
|
|
}
|