diff --git a/Source/Engine/Graphics/Models/ModelDraw.h b/Source/Engine/Graphics/Models/ModelDraw.h index 3e2a61242..2867499f3 100644 --- a/Source/Engine/Graphics/Models/ModelDraw.h +++ b/Source/Engine/Graphics/Models/ModelDraw.h @@ -111,7 +111,7 @@ FORCE_INLINE void ModelDraw(ModelType* model, const RenderContext& renderContext } // Draw - if (info.DrawState->PrevLOD == lodIndex || renderContext.View.IsSingleFrame) + if (info.DrawState->PrevLOD == lodIndex || info.DrawState->LODTransition == 255 || renderContext.View.IsSingleFrame) { model->LODs.Get()[lodIndex].Draw(context, info, 0.0f); }