2025-09-03 13:20:19 -04:00
|
|
|
#include "xpackedunitvec.h"
|
|
|
|
|
|
|
|
|
|
XPackedUnitVec::XPackedUnitVec()
|
|
|
|
|
: XAsset()
|
|
|
|
|
, mPacked(0)
|
|
|
|
|
{
|
2025-09-10 21:58:26 -04:00
|
|
|
SetName("Packed Unit Vec");
|
2025-09-03 13:20:19 -04:00
|
|
|
}
|
|
|
|
|
|
2025-09-10 21:58:26 -04:00
|
|
|
void XPackedUnitVec::ParseData(XDataStream *aStream)
|
2025-09-03 13:20:19 -04:00
|
|
|
{
|
2025-09-07 23:16:11 -04:00
|
|
|
*aStream >> mPacked;
|
2025-09-10 21:58:26 -04:00
|
|
|
if (IsDebug())
|
|
|
|
|
{
|
|
|
|
|
qDebug() << QString("[%1] mPacked = %2").arg(aStream->device()->pos(), 10, 10, QChar('0')).arg(mPacked);
|
|
|
|
|
}
|
2025-09-03 13:20:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void XPackedUnitVec::Clear()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|