mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-28 10:41:15 +00:00
Fix
This commit is contained in:
parent
fa1f8786c2
commit
42cec34d4f
@ -91,7 +91,6 @@ class LegoAnimNodeData : public LegoTreeNodeData {
|
|||||||
LegoBool FUN_100a0990(LegoFloat p_time);
|
LegoBool FUN_100a0990(LegoFloat p_time);
|
||||||
|
|
||||||
const LegoChar* GetName() { return m_name; }
|
const LegoChar* GetName() { return m_name; }
|
||||||
LegoU32 GetNumTranslationKeys() { return (LegoU32) m_numTranslationKeys; }
|
|
||||||
|
|
||||||
LegoResult FUN_100a03c0(LegoTime p_time, Matrix4& p_matrix) { return FUN_100a03c0((LegoFloat) p_time, p_matrix); }
|
LegoResult FUN_100a03c0(LegoTime p_time, Matrix4& p_matrix) { return FUN_100a03c0((LegoFloat) p_time, p_matrix); }
|
||||||
LegoBool FUN_100a0990(LegoTime p_time) { return FUN_100a0990((LegoFloat) p_time); }
|
LegoBool FUN_100a0990(LegoTime p_time) { return FUN_100a0990((LegoFloat) p_time); }
|
||||||
|
|||||||
@ -395,7 +395,7 @@ LegoResult LegoROI::FUN_100a8da0(LegoTreeNode* p_node, const Matrix4& p_matrix,
|
|||||||
LegoBool und = data->FUN_100a0990(p_time);
|
LegoBool und = data->FUN_100a0990(p_time);
|
||||||
roi->SetUnknown0x0c(und);
|
roi->SetUnknown0x0c(und);
|
||||||
|
|
||||||
for (LegoU32 i = 0; i < data->GetNumTranslationKeys(); i++) {
|
for (LegoU32 i = 0; i < p_node->GetNumChildren(); i++) {
|
||||||
FUN_100a8da0(p_node->GetChild(i), roi->m_local2world, p_time, roi);
|
FUN_100a8da0(p_node->GetChild(i), roi->m_local2world, p_time, roi);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user