| 49 | } |
| 50 | |
| 51 | bool Animation::HasSameObjects(Animation const & animation) const |
| 52 | { |
| 53 | TAnimObjects const & objects = animation.GetObjects(); |
| 54 | for (auto const & object : objects) |
| 55 | if (HasObject(object)) |
| 56 | return true; |
| 57 | return false; |
| 58 | } |
| 59 | |
| 60 | bool Animation::CouldBeBlendedWith(Animation const & animation) const |
| 61 | { |