| 1073 | } |
| 1074 | |
| 1075 | const char* TerrainBlock::getMaterialName( U32 index ) const |
| 1076 | { |
| 1077 | if ( index < mFile->mMaterials.size() ) |
| 1078 | return mFile->mMaterials[ index ]->getInternalName(); |
| 1079 | |
| 1080 | return NULL; |
| 1081 | } |
| 1082 | |
| 1083 | void TerrainBlock::setLightMap( GBitmap *newLightMap ) |
| 1084 | { |
no test coverage detected