2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 18:24:55 +00:00

Templated BabeDead reader

This commit is contained in:
Jack Andersen
2015-09-27 19:19:31 -10:00
parent 739c31d87c
commit 6d1fb5470f
6 changed files with 102 additions and 136 deletions

View File

@@ -87,17 +87,23 @@ struct MREA
LightCustom,
LightSpot
};
enum Falloff : atUint32
{
FalloffConstant,
FalloffLinear,
FalloffQuadratic
};
Value<LightType> lightType;
Value<atVec4f> color;
Value<atVec3f> position;
Value<atVec3f> direction;
Value<atVec3f> codirection;
Value<float> unk5;
Value<float> unk6;
Value<float> q;
Value<float> spotCutoff;
Value<float> unk7;
Value<atUint8> unk8;
Value<atUint32> unk9;
Value<atUint32> unk10;
Value<float> unk9;
Value<Falloff> falloff;
Value<float> unk11;
Value<atVec4f> unk12;
Value<atUint32> unk13;