Update bfres libraries to latest
This commit is contained in:
parent
48af05941f
commit
fad6721fce
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -27,7 +27,7 @@ namespace Toolbox.Library.Animations
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Represents a class for animating a skeleton
|
||||
/// Represents a class for animating
|
||||
/// </summary>
|
||||
public class STAnimation
|
||||
{
|
||||
|
@ -26,12 +26,12 @@ namespace Toolbox.Library.Animations
|
||||
}
|
||||
}
|
||||
|
||||
public class STCubicKeyFrame : STKeyFrame
|
||||
public class STHermiteCubicKeyFrame : STHermiteKeyFrame
|
||||
{
|
||||
public virtual float Coef0 { get; set; }
|
||||
public virtual float Coef1 { get; set; }
|
||||
public virtual float Coef2 { get; set; }
|
||||
public virtual float Coef3 { get; set; }
|
||||
public float Coef0 { get; set; }
|
||||
public float Coef1 { get; set; }
|
||||
public float Coef2 { get; set; }
|
||||
public float Coef3 { get; set; }
|
||||
}
|
||||
|
||||
public class STHermiteKeyFrame : STKeyFrame
|
||||
|
@ -989,7 +989,10 @@ namespace Toolbox.Library.Collada
|
||||
JOINT,
|
||||
INV_BIND_MATRIX,
|
||||
TEXTANGENT,
|
||||
TEXBINORMAL
|
||||
TEXBINORMAL,
|
||||
INPUT,
|
||||
OUTPUT,
|
||||
INTERPOLATION,
|
||||
}
|
||||
|
||||
public enum ProgramPreset
|
||||
@ -1039,4 +1042,26 @@ namespace Toolbox.Library.Collada
|
||||
public float[] Transform;
|
||||
public float[] BindPose;
|
||||
}
|
||||
|
||||
public class Animation
|
||||
{
|
||||
public string ID;
|
||||
public string Name;
|
||||
|
||||
public Sampler Sampler = new Sampler();
|
||||
public Channel Channel = new Channel();
|
||||
}
|
||||
|
||||
public class Sampler
|
||||
{
|
||||
public string ID;
|
||||
|
||||
public Dictionary<string, SemanticType> Inputs = new Dictionary<string, SemanticType>();
|
||||
}
|
||||
|
||||
public class Channel
|
||||
{
|
||||
public string Source;
|
||||
public string Target;
|
||||
}
|
||||
}
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue
Block a user