mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 00:02:45 +03:00
feat(component): partially implement CCharacterComponent::RenderPrepAll
This commit is contained in:
parent
d2dfa27f4a
commit
9e25e6246f
@ -320,6 +320,24 @@ int32_t CCharacterComponent::RenderPrep(int32_t a2) {
|
||||
|
||||
void CCharacterComponent::RenderPrepAll() {
|
||||
// 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() {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user