| 4128 | } |
| 4129 | |
| 4130 | static void CancelAnimationComponent(HScene scene, HNode node, float* value) |
| 4131 | { |
| 4132 | Animation* anim = GetComponentAnimation(scene, node, value); |
| 4133 | if(anim == 0x0) |
| 4134 | return; |
| 4135 | anim->m_Cancelled = 1; |
| 4136 | } |
| 4137 | |
| 4138 | static inline void AnimateTextureSetAnim(HScene scene, HNode node, float offset, float playback_rate, AnimationComplete anim_complete_callback, void* callback_userdata1, void* callback_userdata2) |
| 4139 | { |
no test coverage detected