Files
ZHGD_Web/SelfPackages/XCharts/Runtime/Component/Animation/AnimationStyleContext.cs
2025-07-13 23:16:20 +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;
}
}