--------------------------------------
| 242 | |
| 243 | //-------------------------------------- |
| 244 | bool MaterialList::writeText(Stream &stream) |
| 245 | { |
| 246 | for(S32 i=0; i < mMaterialNames.size(); i++) |
| 247 | stream.writeLine((U8*)(mMaterialNames[i].c_str())); |
| 248 | stream.writeLine((U8*)""); |
| 249 | |
| 250 | return (stream.getStatus() == Stream::Ok); |
| 251 | } |
| 252 | |
| 253 | //-------------------------------------------------------------------------- |
| 254 | // Clear all materials in the mMatInstList member variable |