Files
XCharts/Runtime/Component/Animation/AnimationStyleContext.cs

14 lines
320 B
C#
Raw Normal View History

2021-12-12 18:05:26 +08:00
using System;
using System.Collections.Generic;
using UnityEngine;
2022-02-19 22:37:57 +08:00
namespace XCharts.Runtime
2021-12-12 18:05:26 +08:00
{
public struct AnimationStyleContext
{
public AnimationType type;
public bool enableSerieDataAddedAnimation;
2022-02-19 17:35:22 +08:00
public float currentPathDistance;
public bool isAllItemAnimationEnd;
2021-12-12 18:05:26 +08:00
}
}