| 449 | } |
| 450 | |
| 451 | const ModelLODBase* Model::GetLOD(int32 lodIndex) const |
| 452 | { |
| 453 | CHECK_RETURN(LODs.IsValidIndex(lodIndex), nullptr); |
| 454 | return &LODs.Get()[lodIndex]; |
| 455 | } |
| 456 | |
| 457 | ModelLODBase* Model::GetLOD(int32 lodIndex) |
| 458 | { |
no test coverage detected