ProjectBorealis / PBCharacterMovement

HL2-style, classic FPS movement for Unreal Engine implemented in C++

Home Page:https://www.projectborealis.com/movement

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Incorrect Mass?

thebeardphantom opened this issue · comments

I’m not super familiar with UE4, but in your movement code you specify Gordon’s weight as such:

Mass = 65.77f; // Gordon is 145lbs

Except that’s not weight, it’s mass. Since weight is mass • gravity that would make Gordon 1431 lbs, assuming that you’re using UE4’s default earth gravity of 9.87.

commented

Weight (or force) in metric units is Newtons, not kilograms. The conversion was made from pounds to kilograms, so the inverse would still have the same result, not 1431lbs.