mirror of
https://github.com/aelurum/AssetStudio.git
synced 2025-05-25 05:40:21 -04:00
Fix bug with Blend type in l2d expressions
This commit is contained in:
parent
ae4548f1c3
commit
9b16ea8d41
@ -1,5 +1,12 @@
|
||||
namespace CubismLive2DExtractor
|
||||
{
|
||||
public enum BlendType
|
||||
{
|
||||
Add,
|
||||
Multiply,
|
||||
Overwrite,
|
||||
}
|
||||
|
||||
public class CubismExpression3Json
|
||||
{
|
||||
public string Type;
|
||||
@ -11,7 +18,7 @@
|
||||
{
|
||||
public string Id;
|
||||
public float Value;
|
||||
public int Blend;
|
||||
public BlendType Blend;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user