2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 20:27:43 +00:00

More element implementation

This commit is contained in:
Jack Andersen
2016-02-07 13:59:05 -10:00
parent 3b67666ffb
commit 080c484a96
9 changed files with 410 additions and 72 deletions

View File

@@ -17,7 +17,7 @@ CIEKeyframeEmitter::CIEKeyframeEmitter(CInputStream& in)
u32 count = in.readUint32Big();
x18_keys.reserve(count);
for (u32 i=0 ; i<count ; ++i)
x18_keys.push_back(in.readUint32Big());
x18_keys.push_back(in.readInt32Big());
}
bool CIEKeyframeEmitter::GetValue(int frame, int& valOut) const