mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 11:12:29 +00:00
feat(glue): handle UpdateSelectionCustomizationScene script function
This commit is contained in:
parent
d12b72e533
commit
59bf077bf8
3 changed files with 8 additions and 1 deletions
|
|
@ -5,6 +5,10 @@
|
|||
TSGrowableArray<CharacterSelectionDisplay> CCharacterSelection::s_characterList;
|
||||
CSimpleModelFFX* CCharacterSelection::s_modelFrame;
|
||||
|
||||
void CCharacterSelection::RenderPrep() {
|
||||
// TODO
|
||||
}
|
||||
|
||||
void CCharacterSelection::SetBackgroundModel(const char* modelPath) {
|
||||
if (!CCharacterSelection::s_modelFrame || !modelPath || !*modelPath) {
|
||||
return;
|
||||
|
|
|
|||
|
|
@ -16,6 +16,7 @@ class CCharacterSelection {
|
|||
static CSimpleModelFFX* s_modelFrame;
|
||||
|
||||
// Static functions
|
||||
static void RenderPrep();
|
||||
static void SetBackgroundModel(const char* modelPath);
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -65,7 +65,9 @@ int32_t Script_DeclineCharacter(lua_State* L) {
|
|||
}
|
||||
|
||||
int32_t Script_UpdateSelectionCustomizationScene(lua_State* L) {
|
||||
WHOA_UNIMPLEMENTED(0);
|
||||
CCharacterSelection::RenderPrep();
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
int32_t Script_GetCharacterSelectFacing(lua_State* L) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue