9f32 PlayPolicy_Onetime(f32 , f32 , f32 frame) {
14f32 PlayPolicy_Loop(f32 start, f32 end, f32 frame) {
17 f32 length = end - start;
20 return ::fmodf(frame, length);
23 f32 offset = ::fmodf(frame + length, length);
25 return offset >= 0.0f ? offset : offset + length;
28f32 FrameCtrl::s_baseUpdateRate = 1.0f;
An abstraction of components from the nw4r and RVL libraries.