summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2021-05-18 10:54:47 +0200
committerGitHub <noreply@github.com>2021-05-18 10:54:47 +0200
commitb2fb119c53f0797cc8700761fe974671180854bd (patch)
tree41f88899bc6c1d14d51bdd24b7979cdb82312d89 /tests
parent66dac8bda0310fba2d7a26032beda5c12f23efc6 (diff)
parent4a28f7e44f99e5c8cab13b4eca4819e483469b07 (diff)
Merge pull request #36263 from Calinou/increase-default-2d-gravity
Diffstat (limited to 'tests')
-rw-r--r--tests/test_physics_2d.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_physics_2d.cpp b/tests/test_physics_2d.cpp
index 25b2871890..a9e2e92b34 100644
--- a/tests/test_physics_2d.cpp
+++ b/tests/test_physics_2d.cpp
@@ -320,7 +320,7 @@ public:
ps->space_set_active(space, true);
ps->set_active(true);
ps->area_set_param(space, PhysicsServer2D::AREA_PARAM_GRAVITY_VECTOR, Vector2(0, 1));
- ps->area_set_param(space, PhysicsServer2D::AREA_PARAM_GRAVITY, 98);
+ ps->area_set_param(space, PhysicsServer2D::AREA_PARAM_GRAVITY, 980);
{
RID vp = vs->viewport_create();