Constructs a sequence of frames with a duration and a traversal style
| 111 | public: |
| 112 | // Constructs a sequence of frames with a duration and a traversal style |
| 113 | inline FrameSequence(const float fFrameDuration = 0.1f, const Style nStyle = Style::Repeat) |
| 114 | { |
| 115 | SetFrameDuration(fFrameDuration); |
| 116 | m_nStyle = nStyle; |
| 117 | } |
| 118 | |
| 119 | inline void SetFrameDuration(const float fFrameDuration = 0.1f) |
| 120 | { |
nothing calls this directly
no outgoing calls
no test coverage detected