| 64 | } |
| 65 | |
| 66 | void AnimationData::Swap(AnimationData& other) |
| 67 | { |
| 68 | ::Swap(Duration, other.Duration); |
| 69 | ::Swap(FramesPerSecond, other.FramesPerSecond); |
| 70 | ::Swap(RootMotionFlags, other.RootMotionFlags); |
| 71 | ::Swap(Name, other.Name); |
| 72 | ::Swap(RootNodeName, other.RootNodeName); |
| 73 | Channels.Swap(other.Channels); |
| 74 | } |
| 75 | |
| 76 | void AnimationData::Release() |
| 77 | { |
no test coverage detected