1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-05 19:31:35 +00:00

Merge pull request #27310 from KoBeWi/angular_dank

Make angular_damp of new Area nodes match the global default
This commit is contained in:
Rémi Verschelde
2019-06-19 15:00:44 +02:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -752,7 +752,7 @@ Area::Area() :
gravity_is_point = false;
gravity_distance_scale = 0;
linear_damp = 0.1;
angular_damp = 1;
angular_damp = 0.1;
priority = 0;
monitoring = false;
monitorable = false;

View File

@@ -250,7 +250,7 @@ AreaSW::AreaSW() :
gravity_is_point = false;
gravity_distance_scale = 0;
point_attenuation = 1;
angular_damp = 1.0;
angular_damp = 0.1;
linear_damp = 0.1;
priority = 0;
set_ray_pickable(false);