mirror of
https://github.com/ZDoom/qzdoom.git
synced 2025-03-03 08:00:56 +00:00
Update models_md3.cpp
This commit is contained in:
parent
72787c2c4c
commit
4e583772d7
1 changed files with 11 additions and 8 deletions
|
@ -307,7 +307,7 @@ void FMD3Model::AddSkins(uint8_t *hitlist)
|
||||||
for (unsigned i = 0; i < Surfaces.Size(); i++)
|
for (unsigned i = 0; i < Surfaces.Size(); i++)
|
||||||
{
|
{
|
||||||
int ssIndex = i + curMDLIndex * MD3_MAX_SURFACES;
|
int ssIndex = i + curMDLIndex * MD3_MAX_SURFACES;
|
||||||
if (curSpriteMDLFrame->surfaceskinIDs[ssIndex].isValid())
|
if (curSpriteMDLFrame && curSpriteMDLFrame->surfaceskinIDs[ssIndex].isValid())
|
||||||
{
|
{
|
||||||
hitlist[curSpriteMDLFrame->surfaceskinIDs[ssIndex].GetIndex()] |= FTextureManager::HIT_Flat;
|
hitlist[curSpriteMDLFrame->surfaceskinIDs[ssIndex].GetIndex()] |= FTextureManager::HIT_Flat;
|
||||||
}
|
}
|
||||||
|
@ -357,6 +357,8 @@ void FMD3Model::RenderFrame(FModelRenderer *renderer, FGameTexture * skin, int f
|
||||||
// Note: Each surface may have a different skin.
|
// Note: Each surface may have a different skin.
|
||||||
FGameTexture *surfaceSkin = skin;
|
FGameTexture *surfaceSkin = skin;
|
||||||
if (!surfaceSkin)
|
if (!surfaceSkin)
|
||||||
|
{
|
||||||
|
if (curSpriteMDLFrame)
|
||||||
{
|
{
|
||||||
int ssIndex = i + curMDLIndex * MD3_MAX_SURFACES;
|
int ssIndex = i + curMDLIndex * MD3_MAX_SURFACES;
|
||||||
if (curSpriteMDLFrame->surfaceskinIDs[ssIndex].isValid())
|
if (curSpriteMDLFrame->surfaceskinIDs[ssIndex].isValid())
|
||||||
|
@ -367,6 +369,7 @@ void FMD3Model::RenderFrame(FModelRenderer *renderer, FGameTexture * skin, int f
|
||||||
{
|
{
|
||||||
surfaceSkin = TexMan.GetGameTexture(surf->Skins[0], true);
|
surfaceSkin = TexMan.GetGameTexture(surf->Skins[0], true);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (!surfaceSkin)
|
if (!surfaceSkin)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue