2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 04:27:42 +00:00

Add CPOINode family of classes

This commit is contained in:
Jack Andersen
2016-04-10 21:10:28 -10:00
parent 8242c3edda
commit 64d85d7427
28 changed files with 351 additions and 14 deletions

View File

@@ -23,9 +23,18 @@ struct EVNT : BigYAML
Value<atUint16> type;
struct CharAnimTime : BigYAML
{
enum class Type : atUint32
{
NonZero,
ZeroIncreasing,
ZeroSteady,
ZeroDecreasing,
Infinity
};
DECL_YAML
Value<float> time;
Value<atUint32> unk1;
Value<Type> type;
};
CharAnimTime animTime;