mirror of
https://github.com/aelurum/AssetStudio.git
synced 2025-05-25 05:40:21 -04:00
18 lines
615 B
C#
18 lines
615 B
C#
using System;
|
|
using AssetStudio;
|
|
|
|
namespace CubismLive2DExtractor.CubismUnityClasses
|
|
{
|
|
public sealed class CubismFadeMotionData : MonoBehaviour
|
|
{
|
|
public string MotionName { get; set; }
|
|
public float FadeInTime { get; set; }
|
|
public float FadeOutTime { get; set; }
|
|
public string[] ParameterIds { get; set; } = Array.Empty<string>();
|
|
public AnimationCurve<float>[] ParameterCurves { get; set; }
|
|
public float[] ParameterFadeInTimes { get; set; }
|
|
public float[] ParameterFadeOutTimes { get; set; }
|
|
public float MotionLength { get; set; }
|
|
}
|
|
}
|