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

14 lines
266 B
C#
Raw Normal View History

2021-12-12 18:05:26 +08:00
using System;
using System.Collections.Generic;
using UnityEngine;
namespace XCharts
{
public struct AnimationStyleContext
{
public AnimationType type;
internal float currentPathDistance;
internal bool isAllItemAnimationEnd;
}
}