| 58 | } |
| 59 | |
| 60 | bool Animation::CouldBeBlendedWith(Animation const & animation) const |
| 61 | { |
| 62 | return !HasSameObjects(animation) || |
| 63 | ((GetType() != animation.GetType()) && m_couldBeBlended && animation.m_couldBeBlended); |
| 64 | } |
| 65 | |
| 66 | bool Animation::HasTargetProperty(Object object, ObjectProperty property) const |
| 67 | { |
no test coverage detected