Calculate current reach multiplier at a specific time in the animation.
Korean: 현재 도달 배수 계산
Animation type
Current time in animation (seconds)
Reach multiplier (0.0 - max), or 0 if outside hit window
const reach = getCurrentReachMultiplier(AnimationType.JAB, 0.15);// Returns 0.95 (jab at peak time)const noReach = getCurrentReachMultiplier(AnimationType.JAB, 0.05);// Returns 0 (before hit window starts) Copy
const reach = getCurrentReachMultiplier(AnimationType.JAB, 0.15);// Returns 0.95 (jab at peak time)const noReach = getCurrentReachMultiplier(AnimationType.JAB, 0.05);// Returns 0 (before hit window starts)
현재도달배수계산
Calculate current reach multiplier at a specific time in the animation.
Korean: 현재 도달 배수 계산