2023-07-11 13:32:50 +08:00
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
namespace XCharts.Runtime
|
|
|
|
|
{
|
|
|
|
|
public sealed class AnimationInfoContext
|
|
|
|
|
{
|
|
|
|
|
public bool init;
|
|
|
|
|
public bool start;
|
|
|
|
|
public bool pause;
|
|
|
|
|
public bool end;
|
|
|
|
|
public float startTime;
|
|
|
|
|
public float currProgress;
|
|
|
|
|
public float destProgress;
|
|
|
|
|
public float totalProgress;
|
|
|
|
|
public float sizeProgress;
|
|
|
|
|
public int currPointIndex;
|
|
|
|
|
public int destPointIndex;
|
2025-03-07 22:59:32 +08:00
|
|
|
public float currDuration;
|
2023-08-24 08:13:42 +08:00
|
|
|
public Vector3 currPoint;
|
|
|
|
|
public Vector3 destPoint;
|
2023-07-12 13:18:58 +08:00
|
|
|
public Dictionary<int, float> dataCurrProgress = new Dictionary<int, float>();
|
|
|
|
|
public Dictionary<int, float> dataDestProgress = new Dictionary<int, float>();
|
2023-07-11 13:32:50 +08:00
|
|
|
}
|
|
|
|
|
}
|