NG_/Assets/XCharts/Runtime/Component/Animation/AnimationStyleContext.cs

14 lines
320 B
C#
Raw Normal View History

2024-12-13 19:40:05 +08:00
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;
}
}