Black Trigram (흑괘) - Korean Martial Arts Combat Simulator API - v0.7.0
    Preparing search index...

    Function getCurrentReachMultiplier

    • Calculate current reach multiplier at a specific time in the animation.

      Korean: 현재 도달 배수 계산

      Parameters

      • animationType: AnimationType

        Animation type

      • currentTime: number

        Current time in animation (seconds)

      Returns number

      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)

      현재도달배수계산