增加AnimationAddition动画支持

This commit is contained in:
monitor1394
2023-07-11 13:32:50 +08:00
parent 0adc9e71e5
commit f678477c88
39 changed files with 704 additions and 432 deletions

View File

@@ -0,0 +1,23 @@
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;
public Dictionary<int, float> itemCurrProgress = new Dictionary<int, float>();
public Dictionary<int, float> itemDestProgress = new Dictionary<int, float>();
}
}