Skip to content

Commit

Permalink
Update AnimKeyFrames.hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
Mozz3d authored May 14, 2024
1 parent 26fd75e commit a4dc22b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions include/RED4ext/Scripting/Natives/AnimKeyFrames.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ enum KeyFrameComponent

struct KeyFrameHeader
{
uint16_t timeNormalized; // 00
uint16_t boneIndex : 13; // 02
uint16_t componentType : 2; // 0E
uint16_t rotationWSign : 1; // 0F
uint16_t timeNormalized; // 00
uint16_t boneIndex : 13; // 02
uint16_t componentType : 2; // 0E
uint16_t rotationWSign : 1; // 0F
};
RED4EXT_ASSERT_SIZE(KeyFrameHeader, 0x4);

Expand Down Expand Up @@ -50,16 +50,16 @@ RED4EXT_ASSERT_SIZE(KeyFrameConst, 0x10);

struct TrackKey
{
uint16_t time; // 00
uint16_t time; // 00
uint16_t index; // 02
float value; // 04
float value; // 04
};
RED4EXT_ASSERT_SIZE(TrackKey, 0x8);

struct TrackKeyConst // 6B?
{
uint16_t index; // 00
float value; // 02
float value; // 02
};
RED4EXT_ASSERT_SIZE(TrackKeyConst, 0x8);

Expand Down

0 comments on commit a4dc22b

Please sign in to comment.