| 138 | } |
| 139 | |
| 140 | static void DestroyNodeAnimation(NodeAnimation* node_animation) |
| 141 | { |
| 142 | node_animation->m_TranslationKeys.SetCapacity(0); |
| 143 | node_animation->m_RotationKeys.SetCapacity(0); |
| 144 | node_animation->m_ScaleKeys.SetCapacity(0); |
| 145 | node_animation->m_MorphWeightKeyTimes.SetCapacity(0); |
| 146 | node_animation->m_MorphWeightKeyValues.SetCapacity(0); |
| 147 | node_animation->m_MorphWeightDimensions = 0; |
| 148 | } |
| 149 | |
| 150 | static void DestroyAnimation(Animation* animation) |
| 151 | { |
no test coverage detected