| 151 | } |
| 152 | |
| 153 | void SkeletonData::Swap(SkeletonData& other) |
| 154 | { |
| 155 | Nodes.Swap(other.Nodes); |
| 156 | Bones.Swap(other.Bones); |
| 157 | Dirty(); |
| 158 | other.Dirty(); |
| 159 | } |
| 160 | |
| 161 | Transform SkeletonData::GetNodeTransform(int32 nodeIndex) const |
| 162 | { |
no test coverage detected