void Door::loadAppearance(const Aurora::TwoDAFile &twoda, uint32 id) { uint32 column = twoda.headerToColumn("ModelName"); if (column == Aurora::kFieldIDInvalid) column = twoda.headerToColumn("Model"); _modelName = twoda.getRow(id).getString(column); }
void Door::loadAppearance(const Aurora::TwoDAFile &twoda, uint32 id) { uint32 modelColumn = twoda.headerToColumn("ModelName"); if (modelColumn == Aurora::kFieldIDInvalid) modelColumn = twoda.headerToColumn("Model"); _invisible = twoda.getRow(id).getInt("VisibleModel") == 0; _modelName = twoda.getRow(id).getString(modelColumn); _soundAppType = twoda.getRow(id).getInt("SoundAppType"); }
void Door::loadAppearance(const Aurora::TwoDAFile &twoda, uint32 id) { if (_appearanceID == Aurora::kFieldIDInvalid) return; uint32 column = twoda.headerToColumn("ModelName"); if (column == Aurora::kFieldIDInvalid) column = twoda.headerToColumn("Model"); _modelName = twoda.getRow(id).getString(column); _soundAppType = twoda.getRow(_appearanceID).getInt("SoundAppType"); }