| 75 | } |
| 76 | |
| 77 | bool blTerrainChunk::write(Stream & stream) |
| 78 | { |
| 79 | if(!Parent::write(stream)) |
| 80 | return(false); |
| 81 | |
| 82 | if(!mLightmap) |
| 83 | return(false); |
| 84 | |
| 85 | if(!mLightmap->writeBitmap("png",stream)) |
| 86 | return(false); |
| 87 | |
| 88 | return(true); |
| 89 | } |
| 90 | |
| 91 | class blTerrainProxy : public SceneLighting::ObjectProxy |
| 92 | { |
nothing calls this directly
no test coverage detected