mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-15 12:40:12 +00:00
14 lines
320 B
C#
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;
|
|
}
|
|
} |