NG_/Assets/XCharts/Runtime/Component/Animation/AnimationStyleContext.cs
2024-12-13 19:40:05 +08:00

14 lines
320 B
C#

using System;
using System.Collections.Generic;
using UnityEngine;
namespace XCharts.Runtime
{
public struct AnimationStyleContext
{
public AnimationType type;
public bool enableSerieDataAddedAnimation;
public float currentPathDistance;
public bool isAllItemAnimationEnd;
}
}