You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Good find. It is supposed to be in just one of them but it was on the wrong one. Steepping is chained and they all resolve in the float version of it (step(float, bool)).
tweent.tcc
Only the first function:
inline const typename detail::tweentraits<T, Ts...>::valuesType & tween<T, Ts...>::step(int32_t dt, bool suppress) {
return step(static_cast(dt * currentDirection)/static_cast(total), suppress);
}
uses currentDirection. The other 2 step functions not
The text was updated successfully, but these errors were encountered: