Draws all the meshes from the model LOD. The rendering context. The packed drawing info data. The LOD transition dither factor.
| 63 | /// <param name="info">The packed drawing info data.</param> |
| 64 | /// <param name="lodDitherFactor">The LOD transition dither factor.</param> |
| 65 | FORCE_INLINE void Draw(const RenderContext& renderContext, const SkinnedMesh::DrawInfo& info, float lodDitherFactor) const |
| 66 | { |
| 67 | for (int32 i = 0; i < Meshes.Count(); i++) |
| 68 | Meshes.Get()[i].Draw(renderContext, info, lodDitherFactor); |
| 69 | } |
| 70 | |
| 71 | /// <summary> |
| 72 | /// Draws all the meshes from the model LOD. |