Developer knowledge network · moderated exchange

UnreliableCode コミュニティ

開発者リサーチ、リバース エンジニアリング、コーディング コミュニティ

Analysis

Kraber & Sentinel 500m Ballistic Trajectory Math: Bullet Gravity & Velocity Decay [v2.4 Technical Discussion]

matrix_math_guy
Math Specialist
MEMBER
担当者: 105
参加日: Aug 2018
投稿: 52
ありがとう: 41
1 か月前 · Jul 3, 2026 5:52 AM
#1

In Apex Legends, weapon bullets have dynamic initial muzzle velocity and gravity scale:

  • Kraber .50-Cal: muzzleVelocity = 29500.0f (approx. 750 m/s), gravityScale = 1.0f
  • Sentinel Charged: muzzleVelocity = 31000.0f, gravityScale = 0.85f
  • Longbow DMR: muzzleVelocity = 30500.0f, gravityScale = 1.0f
CPP
Vector3 CalculateBallisticLead(Vector3 targetPos, Vector3 targetVel, Vector3 localEye, float muzzleVel, float gravScale) {
    float dist = (targetPos - localEye).Length();
    float timeToTarget = dist / muzzleVel;
    // Lead position along target movement vector
    Vector3 predictedPos = targetPos + (targetVel * timeToTarget);
    // Compensate bullet drop
    predictedPos.z += 0.5f * 750.0f * gravScale * (timeToTarget * timeToTarget);
    return predictedPos;
}
apex_glow_god
Apex Reverser
MEMBER
担当者: 128
参加日: Dec 2020
投稿: 8
ありがとう: 30
1 か月前 · Jul 3, 2026 8:13 AM
#2

Tested this formula with Kraber at 450m: landed a clean 145 damage body shot on a running Wraith!

raycast_ryan
Ballistics Dev
MEMBER
担当者: 72
参加日: Sep 2019
投稿: 32
ありがとう: 16
1 か月前 · Jul 3, 2026 6:14 PM
#3

The 750.0f world gravity constant matches the Apex physics engine.