feat(component): partially implement CCharacterComponent::RenderPrepAll

This commit is contained in:
fallenoak 2025-10-21 22:09:05 -05:00
parent d2dfa27f4a
commit 9e25e6246f
No known key found for this signature in database
GPG Key ID: 7628F8E61AEA070D

View File

@ -320,6 +320,24 @@ int32_t CCharacterComponent::RenderPrep(int32_t a2) {
void CCharacterComponent::RenderPrepAll() { void CCharacterComponent::RenderPrepAll() {
// TODO // TODO
this->m_flags &= ~0x8;
this->VariationsLoaded(1);
this->ItemsLoaded(1);
for (uint32_t i = 0; i < NUM_COMPONENT_VARIATIONS; i++) {
CCharacterComponent::s_prepFunc[i](this);
}
// TODO
this->m_flags &= ~0x1;
// TODO dirty mask?
this->m_sections = 0;
// TODO
} }
void CCharacterComponent::RenderPrepSections() { void CCharacterComponent::RenderPrepSections() {