| 80 | } |
| 81 | |
| 82 | bool Model::hasAnimation(String name) const { |
| 83 | return _modelDef->getAnimationIndexByName(name) != Animation::None; |
| 84 | } |
| 85 | |
| 86 | void Model::addLook(int index, Node* node) { |
| 87 | for (int n = s_cast<int>(_looks.size()); n < index + 1; _looks.push_back(New<Look>()), n++); |
no test coverage detected