mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 16:34:06 +00:00
Name LegoAnimationManager::m_unk0x41c
(#1550)
This commit is contained in:

committed by
GitHub

parent
f334eae667
commit
8cdc8fbc05
@@ -284,7 +284,7 @@ private:
|
|||||||
MxLong m_unk0x410; // 0x410
|
MxLong m_unk0x410; // 0x410
|
||||||
MxU32 m_unk0x414; // 0x414
|
MxU32 m_unk0x414; // 0x414
|
||||||
MxU32 m_numAllowedExtras; // 0x418
|
MxU32 m_numAllowedExtras; // 0x418
|
||||||
undefined4 m_unk0x41c; // 0x41c
|
MxU32 m_maxAllowedExtras; // 0x41c
|
||||||
AnimState* m_animState; // 0x420
|
AnimState* m_animState; // 0x420
|
||||||
LegoROIList* m_unk0x424; // 0x424
|
LegoROIList* m_unk0x424; // 0x424
|
||||||
MxBool m_suspendedEnableCamAnims; // 0x428
|
MxBool m_suspendedEnableCamAnims; // 0x428
|
||||||
|
@@ -502,7 +502,7 @@ void LegoAnimationManager::Init()
|
|||||||
m_unk0x1a = FALSE;
|
m_unk0x1a = FALSE;
|
||||||
m_tranInfoList = NULL;
|
m_tranInfoList = NULL;
|
||||||
m_tranInfoList2 = NULL;
|
m_tranInfoList2 = NULL;
|
||||||
m_unk0x41c = g_legoAnimationManagerConfig <= 1 ? 10 : 20;
|
m_maxAllowedExtras = g_legoAnimationManagerConfig <= 1 ? 10 : 20;
|
||||||
|
|
||||||
MxS32 i;
|
MxS32 i;
|
||||||
for (i = 0; i < (MxS32) sizeOfArray(m_unk0x28); i++) {
|
for (i = 0; i < (MxS32) sizeOfArray(m_unk0x28); i++) {
|
||||||
@@ -1570,7 +1570,7 @@ MxResult LegoAnimationManager::Tickle()
|
|||||||
if (elapsedSeconds > 0.2 && m_numAllowedExtras > 2) {
|
if (elapsedSeconds > 0.2 && m_numAllowedExtras > 2) {
|
||||||
m_numAllowedExtras--;
|
m_numAllowedExtras--;
|
||||||
}
|
}
|
||||||
else if (g_unk0x100f7500 < 0.16 && m_numAllowedExtras < m_unk0x41c) {
|
else if (g_unk0x100f7500 < 0.16 && m_numAllowedExtras < m_maxAllowedExtras) {
|
||||||
m_numAllowedExtras++;
|
m_numAllowedExtras++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user