| 27 | , _currentAnimationDef(nullptr) { } |
| 28 | |
| 29 | KeyAnimationDef* ModelCache::Parser::getCurrentKeyAnimation() { |
| 30 | if (!_currentAnimationDef) { |
| 31 | _currentAnimationDef.reset(new KeyAnimationDef()); |
| 32 | } |
| 33 | return s_cast<KeyAnimationDef*>(_currentAnimationDef.get()); |
| 34 | } |
| 35 | |
| 36 | void ModelCache::Parser::getPosFromStr(String str, float& x, float& y) { |
| 37 | auto tokens = str.split(","); |