2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-07-05 10:41:52 +00:00

chore: make xquat and xquat2 structs to improve handling from zcg

This commit is contained in:
Jan Laupetin
2025-06-19 21:07:11 +02:00
committed by Jan
parent 80558af9a1
commit 2230efbd27
5 changed files with 38 additions and 14 deletions

View File

@ -5650,7 +5650,10 @@ namespace T6
uint16_t _2[1];
};
typedef tdef_align32(4) int16_t XQuat2[2];
struct type_align(4) XQuat2
{
int16_t value[2];
};
struct type_align32(4) XAnimDeltaPartQuatDataFrames2
{
@ -5676,7 +5679,10 @@ namespace T6
uint16_t _2[1];
};
typedef tdef_align32(4) int16_t XQuat[4];
struct type_align(4) XQuat
{
int16_t value[4];
};
struct type_align32(4) XAnimDeltaPartQuatDataFrames
{