AnimCurveType Enumeration |
Represents the type of key values stored by this curve. This also determines the number of required elements to
define a key in the
Keys array. Use the
ElementsPerKey
method to retrieve the number of elements required for the
CurveType of that curve.
Namespace:
Syroot.NintenTools.Bfres
Assembly:
Syroot.NintenTools.Bfres (in Syroot.NintenTools.Bfres.dll) Version: 1.2.1
Syntaxpublic enum AnimCurveType
Members
| Member name | Description |
---|
| Cubic |
The curve uses cubic interpolation. 4 elements of the Keys array form a key.
|
| Linear |
The curve uses linear interpolation. 2 elements of the Keys array form a key.
|
| BakedFloat |
1 element of the Keys array forms a key.
|
| StepInt |
1 element of the Keys array forms a key.
|
| BakedInt |
1 element of the Keys array forms a key.
|
| StepBool |
1 element of the Keys array forms a key.
|
| BakedBool |
1 element of the Keys array forms a key.
|
See Also