Improve integration with Live2D assets

- Improved export method of AnimationClip motions
- [GUI] Added display of model info on the preview tab
- [GUI] Added support for partial export:
  - selected models
  - model + selected AnimationClip motions
  - model + selected Fade motions
  - model + selected Fade Motion List
This commit is contained in:
VaDiM
2024-02-07 03:51:52 +03:00
parent 2f6d9ec77f
commit 70213e3012
17 changed files with 1144 additions and 461 deletions

View File

@ -2,7 +2,7 @@
namespace CubismLive2DExtractor
{
public class AnimationCurve
public sealed class AnimationCurve
{
public CubismKeyframeData[] m_Curve { get; set; }
public int m_PreInfinity { get; set; }
@ -10,7 +10,7 @@ namespace CubismLive2DExtractor
public int m_RotationOrder { get; set; }
}
public class CubismFadeMotion
public sealed class CubismFadeMotion
{
public string m_Name { get; set; }
public string MotionName { get; set; }