Hi there! I’m currently doing research for a project of how physics are used in video games, and I found a script to change the gravity force from the roblox API. I’m trying to figure out where the numbers from the MOON_GRAVITY_RATIO come from. I understand that the number 9.81 represents g (Gravitational constant), I don’t really understand where the number 1.62 comes from though, any help would be appreciated!
local MOON_GRAVITY_RATIO = 1.62 / 9.81
local DEFAULT_GRAVITY = 196.2
local MOON_GRAVITY = DEFAULT_GRAVITY * MOON_GRAVITY_RATIO
workspace.Gravity = enabled and MOON_GRAVITY or DEFAULT_GRAVITY