| 205 | } |
| 206 | |
| 207 | int ModelDef::getLookIndexByName(String name) { |
| 208 | auto it = _lookIndex.find(name); |
| 209 | if (it != _lookIndex.end()) { |
| 210 | return it->second; |
| 211 | } |
| 212 | return Look::None; |
| 213 | } |
| 214 | |
| 215 | const StringMap<int>& ModelDef::getAnimationIndexMap() const { |
| 216 | return _animationIndex; |