| 800 | } |
| 801 | |
| 802 | const ModelLODBase* SkinnedModel::GetLOD(int32 lodIndex) const |
| 803 | { |
| 804 | CHECK_RETURN(LODs.IsValidIndex(lodIndex), nullptr); |
| 805 | return &LODs.Get()[lodIndex]; |
| 806 | } |
| 807 | |
| 808 | ModelLODBase* SkinnedModel::GetLOD(int32 lodIndex) |
| 809 | { |
nothing calls this directly
no test coverage detected