Files
AR-Menu/Library/PackageCache/org.khronos.unitygltf@6b55d14e19c1/Runtime/Scripts/Cache/AnimationCacheData.cs
2025-11-30 08:35:03 +02:00

28 lines
561 B
C#

#if UNITY_ANIMATION || !UNITY_2019_1_OR_NEWER
using GLTF;
using GLTF.Schema;
namespace UnityGLTF.Cache
{
public struct AnimationSamplerCacheData
{
public AttributeAccessor Input;
public AttributeAccessor Output;
public InterpolationType Interpolation;
}
public class AnimationCacheData
{
public UnityEngine.AnimationClip LoadedAnimationClip { get; set; }
public AnimationSamplerCacheData[] Samplers { get; set; }
public AnimationCacheData(int samplerCount)
{
Samplers = new AnimationSamplerCacheData[samplerCount];
}
}
}
#endif