------------------------------------------------------------------ @brief Set the animation time range * * @param first Time where the animation starts, in ticks * @param last Time where the animation ends, in ticks */
| 244 | * @param last Time where the animation ends, in ticks |
| 245 | */ |
| 246 | void SetAnimationRange(double _first, double _last) { |
| 247 | first = _first; |
| 248 | last = _last; |
| 249 | |
| 250 | ClearAnimRangeSetup(); |
| 251 | UpdateAnimRangeSetup(); |
| 252 | } |
| 253 | |
| 254 | protected: |
| 255 |