diff options
author | sanine <sanine.not@pm.me> | 2023-05-12 01:16:46 -0500 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2023-05-12 01:16:46 -0500 |
commit | 3275ae4948fd2c1bb8da780214cbb741dc3178be (patch) | |
tree | 69dbf1d5b56896e1212454e5f79daaec1d201ec1 /scripts/character | |
parent | 14195dac1eda9140192ca07003258715b8b0abd3 (diff) |
begin refactor
Diffstat (limited to 'scripts/character')
-rw-r--r-- | scripts/character/spring.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/character/spring.lua b/scripts/character/spring.lua index ed3e878..cbbba4f 100644 --- a/scripts/character/spring.lua +++ b/scripts/character/spring.lua @@ -24,6 +24,6 @@ return function(db, self, other, point) local tbl = ode.ContactGeomTable(point) local x = tbl.depth - 3.8 local spring = db:getComponent(self, "spring") - spring.F = math.abs(200 * x) + spring.F = math.abs(500 * x) print("depth", x) end |