--------------------------------------
| 252 | |
| 253 | //-------------------------------------- |
| 254 | bool MaterialList::writeText(Stream &stream) |
| 255 | { |
| 256 | for(S32 i=0; i < mMaterialNames.size(); i++) |
| 257 | stream.writeLine((U8*)(mMaterialNames[i].c_str())); |
| 258 | stream.writeLine((U8*)""); |
| 259 | |
| 260 | return (stream.getStatus() == Stream::Ok); |
| 261 | } |
| 262 | |
| 263 | //-------------------------------------------------------------------------- |
| 264 | // Clear all materials in the mMatInstList member variable |